Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Open Source. Switch to the latest stable version.
This is a general procedure that describes how to perform a rolling restart. You can use this procedure where a restart of each node is required (changing the scylla.yaml
file, for example).
Note
Perform this procedure on one node at the time. Move to the next node only after validating the current node is up and running.
Run nodetool drain command (Scylla stops listening to its connections from the client and other nodes).
Stop the Scylla node.
sudo systemctl stop scylla-server
docker exec -it some-scylla supervisorctl stop scylla
(without stopping some-scylla container)
Update the relevant configuration file, for example, scylla.yaml the file can be found under /etc/scylla/
.
Start the Scylla node.
sudo systemctl start scylla-server
docker exec -it some-scylla supervisorctl start scylla
(with some-scylla container already running)
Verify the node is up and has returned to the Scylla cluster using nodetool status.
Repeat this procedure for all the relevant nodes in the cluster.
Was this page helpful?
On this page