Forum Discussion
afiqazmi31
Oct 11, 2023Copper Contributor
SQL Server Failover Cluster Resource/Group stop itself due lost connection to storage
I have an environment where we had; MSSQL Cluster Data, Log and Quorom on iSCSI storage (AWS FSx Ontap) Fileshare witness (AWS FSx Windows) Just out of curiosity, can MSSQL Server Cluster Re...
RodVK
Apr 10, 2024Copper Contributor
Hi SivertSolem thanks for the reply but we are using Failover cluster instance, and the rhs.exe is bugchecking after storage seems to disappear after a failover. Not using Always on Availability groups.
SivertSolem
Apr 10, 2024Iron Contributor
Aah, apologies. That should have been given by using iSCSI as quorum.
The health check timeout is still configurable, but in this case in the Failover Cluster Configuration.
Powershell
Import-Module FailoverClusters
$fci = "SQL Server (INST1)"
Get-ClusterResource $fci | Set-ClusterParameter HealthCheckTimeout 60000T-SQL
ALTER SERVER CONFIGURATION
SET FAILOVER CLUSTER PROPERTY HealthCheckTimeout = 60000;