Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies the maximum number of seconds a node is allowed to spend arbitrating for the quorum resource in a cluster.
Attribute | Value |
---|---|
Data type | DWORD |
Access | Read/write |
Structure | CLUSPROP_DWORD |
Minimum | 1 |
Maximum | 3600 |
Default | 20 |
Remarks
The constant for this property is CLUSREG_NAME_QUORUM_ARBITRATION_TIMEOUT.
Windows Server 2008: The default is 60 seconds.
Examples
The property value portion of a property list entry for QuorumArbitrationTimeMax can be set with the following example code:
DWORD QuorumArbitrationTimeMaxData = 20;
CLUSPROP_DWORD QuorumArbitrationTimeMaxValue;
QuorumArbitrationTimeMaxValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
QuorumArbitrationTimeMaxValue.cbLength = sizeof(DWORD);
QuorumArbitrationTimeMaxValue.dw = QuorumArbitrationTimeMaxData;
Requirements
Minimum supported client |
None supported |
Minimum supported server |
Windows Server 2008 Enterprise, Windows Server 2008 Datacenter |