Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
2.8. Swapping and Out of Memory Tips
Swapping pages out to disk can introduce latency in any environment. To ensure low latency, the best strategy is to have enough memory in your systems so that swapping is not necessary. Always size the physical RAM as appropriate for your application and system. Use vmstat to monitor memory usage and watch the si (swap in) and so (swap out) fields. It is optimal that they remain zero as much as possible.
Procedure 2.8. Out of Memory (OOM)
/proc/sys/vm/panic_on_oom. When set to 1 the kernel will panic on OOM. The default setting is 0 which instructs the kernel to call a function named oom_killer on an OOM. Usually, oom_killer can kill rogue processes and the system will survive.
- The easiest way to change this is to
echothe new value to/proc/sys/vm/panic_on_oom.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note
It is recommended that you make the $RT; kernel panic on OOM. When the system has encountered an OOM state, it is no longer deterministic. - It is also possible to prioritize which processes get killed by adjusting the
oom_killerscore. In/proc/PID/there are two files namedoom_adjandoom_score. Valid scores foroom_adjare in the range -16 to +15. This value is used to calculate the 'badness' of the process using an algorithm that also takes into account how long the process has been running, among other factors. To see the currentoom_killerscore, view theoom_scorefor the process.oom_killerwill kill processes with the highest scores first.This example adjusts theoom_scoreof a process with a PID of 12465 to make it less likely thatoom_killerwill kill it.Copy to Clipboard Copied! Toggle word wrap Toggle overflow - There is also a special value of -17, which disables
oom_killerfor that process. In the example below,oom_scorereturns a value ofO, indicating that this process would not be killed.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
For more information, or for further reading, the following man pages are related to the information given in this section.
- swapon(2)
- swapon(8)
- vmstat(8)