summaryrefslogtreecommitdiffstats
path: root/src/commands/waitaof.json
blob: 735a8f261f078bf2076a581ed68514ceb266d76a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
    "WAITAOF": {
        "summary": "Blocks until all of the preceding write commands sent by the connection are written to the append-only file of the master and/or replicas.",
        "complexity": "O(1)",
        "group": "generic",
        "since": "7.2.0",
        "arity": 4,
        "function": "waitaofCommand",
        "command_flags": [
            "NOSCRIPT"
        ],
        "acl_categories": [
            "CONNECTION"
        ],
        "command_tips": [
            "REQUEST_POLICY:ALL_SHARDS",
            "RESPONSE_POLICY:AGG_MIN"
        ],
        "reply_schema": {
            "type": "array",
            "description": "Number of local and remote AOF files in sync.",
            "minItems": 2,
            "maxItems": 2,
            "items": [
                {
                    "description": "Number of local AOF files.",
                    "type": "integer",
                    "minimum": 0
                },
                {
                    "description": "Number of replica AOF files.",
                    "type": "number",
                    "minimum": 0
                }
            ]
        },
        "arguments": [
            {
                "name": "numlocal",
                "type": "integer"
            },
            {
                "name": "numreplicas",
                "type": "integer"
            },
            {
                "name": "timeout",
                "type": "integer"
            }
        ]
    }
}