Improve Performance
Here we share some small but useful tweaks to squeeze a bit more performance out of your node. Nothing too fancy — just practical stuff we’ve tested ourselves: kernel tuning, disks layout, and a few tricks that can make your setup run smoother and faster.
Enable AMD P-State Scaling Driver
Edit /etc/default/grub and add amd_pstate=active the following line:
Then update GRUB and reboot:
CPU Governor
Set the CPU governor to performance mode:
And/or install cpufrequtils to make it persistent across reboots:
Disk Layout
For best disk I/O latency, use NVMe drives in RAID0:
Format RAID0 as XFS
Stripe and format RAID0 with 2 disks:
Mount the RAID0 Volume
Create a mount point:
Add the mount point to /etc/fstab:
Mount it:
Network Congestion Control
Add this string to /etc/sysctl.conf or your file in /etc/sysctl.d/ :
Binary Optimization
For optimal performance with minimal RAM usage, build with jemalloc:
📘 Read more: