Replica EnumerationAerospike
Defines type of node partition targeted by read commands.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.4.0.0 (3.4.1)
Syntax

Members

  Member nameValueDescription
MASTER0 Read from node containing key's master partition. This is the default behavior.
MASTER_PROLES1 Distribute reads across nodes containing key's master and replicated partitions in round-robin fashion. This option requires to be enabled in order to function properly.
SEQUENCE2 Always try node containing master partition first. If connection fails and is true, try nodes containing prole partition. This option requires to be enabled in order to function properly.
RANDOM3 Distribute reads across all nodes in cluster in round-robin fashion. This option is useful when the replication factor equals the number of nodes in the cluster and the overhead of requesting proles is not desired.
See Also