Configuring CONFIG_HZ in the Linux Kernel
CONFIG_HZ sets the kernel’s internal timer interrupt frequency (measured in Hz). This determines how often the kernel’s scheduler runs and how fine-grained process preemption can be. The default value is typically 250 Hz on most distributions, though some set it to 1000 Hz for lower latency workloads. Higher CONFIG_HZ values (like 1000 Hz) reduce scheduling…
