File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -875,6 +875,14 @@ over one of its replicas and remove the node after it turned into a replica of t
875875new master. Obviously this does not help when you want to reduce the actual
876876number of masters in your cluster, in that case, a resharding is needed.
877877
878+ There is a special scenario where you want to remove a failed node.
879+ You should not use the ` del-node `  command because it tries to connect to all nodes and you will encounter a "connection refused" error.
880+ Instead, you can use the ` call `  command:
881+ 
882+  redis-cli --cluster call 127.0.0.1:7000 cluster forget `<node-id>` 
883+ 
884+ This command will execute ` CLUSTER FORGET `  command on every node. 
885+ 
878886#### Replica migration  
879887
880888In Redis Cluster, you can reconfigure a replica to replicate with a
                         You can’t perform that action at this time. 
           
                  
0 commit comments