await-consistent

post

/V0/nosql/admin#await-consistent

Waits for up to the specified number of seconds for the replicas in one or more zones, or in the entire store, to catch up with the masters in their associated shards. Prints information about whether consistency was achieved or, if not, details about which nodes failed to become consistent.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Admin CLI Command:
await-consistent -timeout [-zn | -znname ] [-replica-delay-threshold ]
Root Schema : schema
Type: object
Show Source
Example:
{
    "command":"await-consistency",
    "arguments":[
        {
            "timeout":"Timeout value in seconds"
        },
        {
            "zn":"Id of the zone"
        },
        {
            "replicaDelayThreshold":"Allowed replica delay time in milliseconds"
        }
    ]
}
Nested Schema : arguments
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : argumentValue
Match One Schema
Show Source
Back to Top

Response

Supported Media Types

200 Response

Operation ended successfully
Body ()
Root Schema : commonResponse
Type: object
Show Source
Example:
{
    "operation":"operation executed",
    "returnCode":"5000 when success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem at execution",
    "description":"error description when returnCode != 5000",
    "returnValue":"JSON object with the output returned by the command when returnCode: 5000(success). Otherwise, null"
}
Nested Schema : returnValue
Type: object
Back to Top