summaryrefslogtreecommitdiff
path: root/src/commands/wait.json
blob: 92ec4af3ed57494a9ddb972d94c519cd5903917d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
    "WAIT": {
        "summary": "Wait for the synchronous replication of all the write commands sent in the context of the current connection",
        "complexity": "O(1)",
        "group": "generic",
        "since": "3.0.0",
        "arity": 3,
        "function": "waitCommand",
        "command_flags": [
        ],
        "acl_categories": [
            "CONNECTION"
        ],
        "command_tips": [
            "REQUEST_POLICY:ALL_SHARDS",
            "RESPONSE_POLICY:AGG_MIN"
        ],
        "reply_schema": {
            "type": "integer",
            "description": "The number of replicas reached by all the writes performed in the context of the current connection.",
            "minimum": 0
        },
        "arguments": [
            {
                "name": "numreplicas",
                "type": "integer"
            },
            {
                "name": "timeout",
                "type": "integer"
            }
        ]
    }
}