summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/cluster-syncslots.json
blob: 9ea8c763270ed9511d39285ab518be1f2306adf1 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
    "SYNCSLOTS": {
        "summary": "Internal command for atomic slot migration protocol between cluster nodes.",
        "complexity": "O(1)",
        "group": "cluster",
        "since": "8.4.0",
        "arity": -3,
        "container": "CLUSTER",
        "function": "clusterCommand",
        "command_flags": [
            "NO_ASYNC_LOADING",
            "ADMIN",
            "STALE"
        ],
        "command_tips": [
            "NONDETERMINISTIC_OUTPUT"
        ],
        "arguments": [
            {
                "name": "subcommand",
                "type": "oneof",
                "arguments": [
                    {
                        "name": "sync",
                        "token": "SYNC",
                        "type": "block",
                        "arguments": [
                            {
                                "name": "task-id",
                                "type": "string"
                            },
                            {
                                "name": "slot-range",
                                "type": "block",
                                "multiple": true,
                                "arguments": [
                                    {
                                        "name": "start-slot",
                                        "type": "integer"
                                    },
                                    {
                                        "name": "end-slot",
                                        "type": "integer"
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "token": "RDBCHANNEL",
                        "name": "task-id",
                        "type": "string"
                    },
                    {
                        "name": "snapshot-eof",
                        "token": "SNAPSHOT-EOF",
                        "type": "pure-token"
                    },
                    {
                        "name": "stream-eof",
                        "token": "STREAM-EOF",
                        "type": "pure-token"
                    },
                    {
                        "name": "ack",
                        "token": "ACK",
                        "type": "block",
                        "arguments": [
                            {
                                "name": "state",
                                "type": "string"
                            },
                            {
                                "name": "offset",
                                "type": "integer"
                            }
                        ]
                    },
                    {
                        "token": "FAIL",
                        "name": "error",
                        "type": "string"
                    },
                    {
                        "name": "conf",
                        "token": "CONF",
                        "type": "block",
                        "arguments": [
                            {
                                "name": "option",
                                "type": "string",
                                "multiple": true
                            },
                            {
                                "name": "value",
                                "type": "string",
                                "multiple": true
                            }
                        ]
                    }
                ]
            }
        ],
        "reply_schema": {
            "oneOf": [
                {
                    "description": "Reply to CLUSTER SYNCSLOTS SYNC, returns special RDB channel sync response.",
                    "const": "RDBCHANNELSYNCSLOTS"
                },
                {
                    "description": "Reply to CLUSTER SYNCSLOTS CONF and other subcommands.",
                    "const": "OK"
                }
            ]
        }
    }
}