Complete the command to check the cluster nodes status.
redis-cli [1]The CLUSTER NODES command lists all nodes in the Redis cluster and their status.
Complete the command to trigger a manual failover on a Redis replica node.
redis-cli [1] FAILOVERThe CLUSTER FAILOVER command forces a replica to become a master during failover.
Fix the error in the command to check cluster slots allocation.
redis-cli [1] SLOTSThe correct command is CLUSTER SLOTS to view slot allocation in the cluster.
Fill both blanks to create a command that sets a node as a replica of another node.
redis-cli [1] [2] <master-node-id>
The command CLUSTER REPLICATE <master-node-id> sets the current node as a replica of the specified master node.
Fill all three blanks to create a command that forces a replica to failover and become master immediately.
redis-cli [1] FAILOVER [2] [3]
The command CLUSTER FAILOVER FORCE TAKEOVER forces a replica to become master immediately, even if the master is still reachable.