tuned.conf 744 B

12345678910111213141516171819202122232425
  1. #
  2. # tuned configuration
  3. #
  4. [main]
  5. summary=Optimize systems running OpenShift control plane
  6. include=openshift
  7. [sysctl]
  8. # ktune sysctl settings, maximizing i/o throughput
  9. #
  10. # Minimal preemption granularity for CPU-bound tasks:
  11. # (default: 1 msec# (1 + ilog(ncpus)), units: nanoseconds)
  12. kernel.sched_min_granularity_ns=10000000
  13. # The total time the scheduler will consider a migrated process
  14. # "cache hot" and thus less likely to be re-migrated
  15. # (system default is 500000, i.e. 0.5 ms)
  16. kernel.sched_migration_cost_ns=5000000
  17. # SCHED_OTHER wake-up granularity.
  18. #
  19. # Preemption granularity when tasks wake up. Lower the value to improve
  20. # wake-up latency and throughput for latency critical tasks.
  21. kernel.sched_wakeup_granularity_ns = 4000000