Was this page helpful?
Increase ScyllaDB resource limits over systemd¶
Topic: Increasing resource limits when ScyllaDB runs and is managed via systemd
Audience: ScyllaDB administrators
Issue¶
Updates to /etc/security/limits.d/scylla.conf
do not have any effect. After a cluster rolling restart is completed, the ScyllaDB limits listed under /proc/<PID>/limits
are still the same or lower than what has been configured.
Root Cause¶
When running under systemd, ScyllaDB enforces the LimitNOFILE and LimitNPROC values under /lib/systemd/system/scylla-server.service
, where:
LimitNOFILE - Maximum number of file descriptors allowed to be opened simultaneously (defaults to 800000)
LimitNPROC - Maximum number of processes allowed to run in parallel (defaults to 8096)
Even though ScyllaDB’s provided defaults are suitable for most workloads, there may be situations on which these values may need to be overridden.
Before you start¶
The Linux kernel imposes an upper limit on the maximum number of file-handles that a process may allocate, which takes precedence over systemd. Such limit may be persistently increased by tuning the fs.nr_open
parameter in the /etc/sysctl.conf
file.
The fs.nr_open
parameter default value is 1048576 (1024*1024) and it must be increased whenever it is required to overcome such limit.
As a rule of thumb, always ensure that the value of fs.nr_open
is equal or greater than the maximum number of file-handles that ScyllaDB may be able to consume.
To check the value of
fs.nr_open
run:
sysctl fs.nr_open
fs.nr_open = 1048576
Edit the file
/etc/sysctl.conf
as root, and increase the value offs.nr_open
:
sudo vi /etc/sysctl.conf
fs.nr_open=5000000
Save the changes and apply the new setting to the running configuration:
sudo sysctl -p
Solution¶
To override ScyllaDB limits on systemd, run:
sudo systemctl edit scylla-server.service
Within the opened text editor, add the following lines and adjust the parameters as needed, e.g.:
Warning: Avoid setting the value of such fields to Infinity as this can lead to unpredictable behaviors. When adjusting the value of LimitNOFILE always set it to a value which is equal or lower than the value of fs.nr_open
[Service]
LimitNOFILE=5000000
Restart ScyllaDB:
sudo systemctl restart scylla-server.service
This will create a configuration file named override.conf
under the /etc/systemd/system/scylla-server.service.d
folder. Whenever editing this file by hand manually, remember to run sudo systemctl daemon-reload
before restarting ScyllaDB, so that systemd reloads the changes.
To check the updated limits allowed by the ScyllaDB process run:
cat /proc/$(pidof scylla)/limits
References¶
The Linux Kernel Documentation for /proc/sys/fs/* <https://www.kernel.org/doc/Documentation/sysctl/fs.txt>
systemd.exec(5) manpage