ReadModeSC Enumeration
Read policy for SC (strong consistency) namespaces.
Determines SC read consistency options.
Session | 0 |
Ensures this client will only see an increasing sequence of record versions.
Server only reads from master. This is the default.
|
Linearize | 1 |
Ensures ALL clients will only see an increasing sequence of record versions.
Server only reads from master.
|
AllowReplica | 2 |
Server may read from master or any full (non-migrating) replica.
Increasing sequence of record versions is not guaranteed.
|
AllowUnavailable | 3 |
Server may read from master or any full (non-migrating) replica or from unavailable
partitions. Increasing sequence of record versions is not guaranteed.
|