ReplicaRole Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the role of a stateful service replica.
public enum ReplicaRole
type ReplicaRole =
Public Enum ReplicaRole
- Inheritance
-
ReplicaRole
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | Indicates the initial role that a replica is created in. |
None | 1 | Specifies that the replica has no responsibility in regard to the replica set. |
Primary | 2 | Refers to the replica in the set on which all read and write operations are complete in order to enforce strong consistency semantics. Read operations are handled directly by the Primary replica, while write operations must be acknowledged by a quorum of the replicas in the replica set. There can only be one Primary replica in a replica set at a time. |
IdleSecondary | 3 | Refers to a replica in the set that receives a state transfer from the Primary replica to prepare for becoming an active Secondary replica. There can be multiple Idle Secondary replicas in a replica set at a time. Idle Secondary replicas do not count as a part of a write quorum. |
ActiveSecondary | 4 | Refers to a replica in the set that receives state updates from the Primary replica, applies them, and sends acknowledgements back. Secondary replicas must participate in the write quorum for a replica set. There can be multiple active Secondary replicas in a replica set at a time. The number of active Secondary replicas is configurable that the reliability subsystem should maintain. |
IdleAuxiliary | 5 | TODO |
ActiveAuxiliary | 6 | TODO |
PrimaryAuxiliary | 7 | TODO |
Remarks
Service Fabric requires different behaviors from a service replica depending on what role it currently performs.
Applies to
Azure SDK for .NET