Remove a node
Remove a node from your Redis Enterprise cluster.
You might want to remove a node from a Redis Enterprise cluster for one of the following reasons:
- To permanently remove a node if you no longer need the extra capacity.
- To replace a faulty node with a healthy node.
- To replace a healthy node with a different node.
You can configure email alerts from the cluster to notify you of cluster changes, including when a node is removed.
Permanently remove a node
Permanently removing a node means you are decreasing cluster capacity. Before trying to remove a node, make sure that the cluster has enough capacity for all resources without that node, otherwise you cannot remove the node.
If there is not enough capacity in the cluster to facilitate removing the node, you can either delete databases or add another node instead of the one you would like to remove.
During the removal process, the cluster migrates all resources from the node being removed to other nodes in the cluster. In order to ensure database connectivity, and database high availability (when replication is enabled), the cluster first creates replacement shards or endpoints on one of the other nodes in the cluster, initiates failover as needed, and only then removes the node.
If a cluster has only two nodes (which is not recommended for production deployments) and some databases have replication enabled, you cannot remove a node.
Replace a faulty node
If the cluster has a faulty node that you would like to replace, you only need to add a new node to the cluster. The cluster recognizes the existence of a faulty node and automatically replaces the faulty node with the new node.
For guidelines, refer to Replacing a faulty node.
Replace a healthy node
If you would like to replace a healthy node with a different node, you must first add the new node to the cluster, migrate all the resources from the node you would like to remove, and only then remove the node.
For further guidance, refer to adding a new node to a cluster.
You can migrate resources by using the rladmin
command-line interface
(CLI). For guidelines, refer to rladmin
command-line interface
(CLI).
Remove a node
To remove a node using the Cluster Manager UI:
-
On the Nodes screen, click for the node you want to remove.
-
Select Remove node from the list.
-
If there are shards on the node, select Confirm node removal.
If the node has no shards, the Confirm node removal checkbox does not appear.
-
Click Remove.
Redis Enterprise Software examines the node and the cluster, then takes the actions required to remove the node, such as migrating shards to other nodes. After the process finishes, the node is no longer shown in the UI.
Note:At any point, you can click the Cancel removal button to stop the process. When cancelled, the current internal action is completed, and then the process stops.
To remove a node using the REST API, use POST /v1/nodes/<node_id>/actions/remove
.
By default, the remove node action completes after all resources migrate off the removed node. Node removal does not wait for migrated shards' persistence files to be created on the new nodes.
To change node removal to wait for the creation of new persistence files for all migrated shards, set wait_for_persistence
to true
in the request body or update the cluster policy persistent_node_removal
to true
to change the cluster's default behavior.
For example:
POST https://<hostname>:9443/v1/nodes/<node_id>/actions/remove
{
"wait_for_persistence": true
}