SafetyCheckKind Enumeration

 

Applies To: Azure, Windows 10, Windows 8, Windows 8.1, Windows Server 2012 R2

A Service Fabric enumeration that indicates the upgrade safety check performed.

Namespace:   System.Fabric
Assembly:  System.Fabric (in System.Fabric.dll)

Syntax

public enum SafetyCheckKind

Members

Member name Description
EnsureAvailability

Indicates that there is either a stateless service partition on the node having exactly one instance, or there is a primary replica on the node for which the partition is quorum loss. In both cases, bringing down the replica will result in loss of availability.

EnsurePartitionQuorum

Indicates that there is some partition for which if we bring down the replica on the node, it will result in quorum loss for that partition.

EnsureSeedNodeQuorum

Indicates that if we bring down the node then this will result in global seed node quorum loss.

Invalid

Indicates that the upgrade safety check kind is invalid. This value is not used.

WaitForInBuildReplica

Indicates that there is either a replica on the node that is going through copy, or there is a primary replica on the node that is copying data to some other replica. In both cases, bringing down the replica on the node will abort the copy.

WaitForPrimaryPlacement

Indicates that there is some replica on the node that was moved out of this node. Service Fabric is now waiting for the primary to be moved back to this node.

WaitForPrimarySwap

Indicates that Service Fabric is waiting for a primary replica to be moved out of the node.

WaitForReconfiguration

Indicates that there is some replica on the node that is involved in a reconfiguration and Service Fabric is waiting for the reconfiguration to be complete.

See Also

System.Fabric Namespace

Return to top