Was this page helpful?
Upcaling your cluster involves moving the cluster to a larger instance. With this procedure, it can be done without downtime.
ScyllaDB was designed with big servers and multi-cores in mind. In most cases, it is better to run a smaller cluster on a bigger machine instance than a larger cluster on a small machine instance. However, there may be cases where you started with a small cluster, and you now you want to upscale.
There are a few alternatives to do this:
Add Bigger Nodes to a Cluster and removing the old smaller nodes. This is useful when you can not upscale (add more CPU) for each node, for example using I3 instances on EC2.
This procedure can be used to either upscale an entire cluster or to upscale a single node.
Add new bigger nodes to the cluster. Confirm Streaming has completed before continuing.
Remove the old smaller nodes. Confirm Streaming has completed before continuing.
Repeat steps 1 and 2 until the entire cluster is using bigger nodes.
Note
The cluster is only as strong as its weakest node. Do not overload the cluster before all nodes are as upscaled.
Note
Upscaling a cluster by adding CPUs requires at least a quorum of nodes in a cluster to be available. If the quorum is lost, it must be restored before a node is upscaled. See Handling Node Failures for details.
This procedure is only useful for entire clusters, not individual nodes. Do the following on each node in the cluster, making sure the nodes are restarted sequentially to avoid interrupting the availability of your application:
Run nodetool drain to stop traffic to the node.
Stop the service.
sudo systemctl stop scylla-server
docker exec -it some-scylla supervisorctl stop scylla
(without stopping some-scylla container)
Add cores
Run scylla_setup
to set ScyllaDB to the new HW configuration.
Start the service
sudo systemctl start scylla-server
docker exec -it some-scylla supervisorctl start scylla
(with some-scylla container already running)
Note
Updating the number of cores will cause ScyllaDB to reshard the SSTables to match the new core number. This is done by compacting all of the data on disk at startup.