SafetyCheckKind Enum

Definition

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

public enum SafetyCheckKind
type SafetyCheckKind = 
Public Enum SafetyCheckKind
Inheritance
SafetyCheckKind

Fields

EnsureAvailability 7

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 2

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 1

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

Invalid 0

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

WaitForInBuildReplica 6

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 3

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 4

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

WaitForReconfiguration 5

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.

Applies to