I see kswapd using 100% CPU... how can I tell on which process's behalf kswapd is being used so much?
feedback
|
|
kswapd is managing swap space in response to memory demands greater than physically available for all processes. It is process agnostic, it is only interested in what pages are access and when (it is more complex than this of course but to keep things simple we may as well view it this way). So the real question is "what processes have the greatest burden on memory that are causing kswapd to need to page all the time". That is most easily answered using 'top' and switching to memory usage sort mode. | |||||
feedback
|
|
You can script it.. but you can also do it via top Run top then press O followed by p then enter Now all the processes are sorted by swap usage and you can see which ones are using it | |||
|
feedback
|