Increasing Swap File Size
Increasing Swap File Size
The following common scenarios encountered by stake pool operators may require increasing swap file size:
Running low on RAM for cardano-node processes
Checking slot leader schedule is crashing due to not enough RAM
Here is an example to create a 12GB swapfile.
#Stop cardano-node first
sudo systemctl stop cardano-node
sudo swapoff /swapfile
#Verify swapfile is off
swapon --show
#12gb swapfile. Change if you wish.
sudo fallocate -l 12G /swapfile
#Verify swapfile exists
ls -lh /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
#Verify swapfile increased in size
swapon --show
#Restart cardano-node
sudo systemctl start cardano-node
Adjusting the Swappiness Parameter
The swappiness
parameter defines how aggressively the Linux kernel swaps memory pages. Higher values increase the swapping of memory pages. Lower values decrease the amount of swap. Decreasing the amount of swap increases the aggressiveness of the Linux kernel in freeing up memory using other techniques when memory usage is high, including randomly killing processes. For details on adjusting the swappiness
parameter appropriately for your system, see Tuning Your Swap Settings for example.
Last updated