CLUSTER ADDSLOTS slot [slot …]

    Time complexity: O(N) where N is the total number of hash slot arguments

    This command is useful in order to modify a node's view of the cluster configuration. Specifically it assigns a set of hash slots to the node receiving the command. If the command is successful, the node will map the specified hash slots to itself, and will start broadcasting the new configuration.

    • The command only works if all the specified slots are, from the point of view of the node receiving the command, currently not assigned. A node will refuse to take ownership for slots that already belong to some other node (including itself).
    • The command fails if the same slot is specified multiple times.
    • As a side effect of the command execution, if a slot among the ones specified as argument is set as , this state gets cleared once the node assigns the (previously unbound) slot to itself.

    For example the following command assigns slots 1 2 3 to the node receiving the command:

    However trying to execute it again results into an error since the slots are already assigned:

    • To create a new cluster ADDSLOTS is used in order to initially setup master nodes splitting the available hash slots among them.
    • In order to fix a broken cluster where certain slots are unassigned.

    Note that once a node assigns a set of slots to itself, it will start propagating this information in heartbeat packet headers. However the other nodes will accept the information only if they have the slot as not already bound with another node, or if the configuration epoch of the node advertising the new hash slot, is greater than the node currently listed in the table.

    This means that this command should be used with care only by applications orchestrating Redis Cluster, like , and the command if used out of the right context can leave the cluster in a wrong state or cause data loss.