Complete the command to start moving hash slots from one node to another.
CLUSTER SETSLOT [1] MIGRATING <node_id>The command requires the specific slot number to set it as migrating.
Complete the command to assign a hash slot to a node after migration.
CLUSTER SETSLOT [1] NODE <node_id>After migrating, you assign the slot to the new node.
Fix the error in the command to mark a slot as importing on the target node.
CLUSTER SETSLOT [1] IMPORTING <source_node_id>The correct keyword is the singular slot to specify which slot is importing.
Fill both blanks to complete the command that moves a key to the target node during resharding.
MIGRATE [1] 6379 [2] 0 5000
The MIGRATE command needs the destination IP and the key name to move the key.
Fill all three blanks to complete the command that finalizes slot migration by setting the slot state.
CLUSTER SETSLOT [1] [2] [3]
The command sets the slot to the NODE with the given node ID after migration.