Under Linux, how do I find out which process is using the swap space more?

Any scripts/links appreciated..

link|improve this question

60% accept rate
feedback

6 Answers

up vote 43 down vote accepted

Run top then press 'O' (capital letter o) followed by 'p' then 'enter'. Now processes should be sorted by their swap usage.

link|improve this answer
37  
From the docs, the SWAP column in top seems to just show how much swap would be necessary if the entire process was swapped out, rather than how much of the process is actually swapped at present. From what I can tell after a short search, there is no way to determine how much of each process is swapped out at the moment. The author of htop refuses to put in such a column because of this (I do see CNSWAP and NSWAP columns, but they don't seem to do anything on my machine): htop.sourceforge.net/index.php?page=faq – yukondude Nov 11 '09 at 19:25
1  
@yukondude is right, the SWAP column in top is just VIRT - RES and this information is a kind of useless in this context. There is no compensation for e.g. shared memory of mapped video RAM. Also not all memory might have been referenced by the process yet. In this case it's not necessary for the OS to read the complete binary from disk into memory, and thus the value of RES doesn't include this part of memory. – Bart Mar 5 at 14:53
I would upvote this more if I could. This is saving my bacon! – Aaron Sheffey Mar 12 at 13:19
feedback

The best script I found is on this page : http://northernmost.org/blog/find-out-what-is-using-your-swap/

link|improve this answer
Very useful link, thanks very much! – Jon Dec 16 '11 at 0:32
1  
Did the job for me – Silver Light Feb 12 at 10:42
Meh! Link only answer. At least summarize what it does (e.g. "the script reads the SWAP line of all the /proc/#####/smaps files") so that people can recreate the process if the link dies. – dmckee Apr 21 at 16:53
Here is the copy, in case the link dies: gitorious.org/dolanormisc/scripts/blobs/master/getswapused – Tautrimas Apr 29 at 8:50
feedback

It's not entirely clear if you mean you want to find the process who has most pages swapped out or process who caused most pages to be swapped out.

For the first you may run top and order by swap (press 'Op'), for the latter you can run vmstat and look for non-zero entries for 'so'.

link|improve this answer
feedback

I don't know of any direct answer as how to find exactly what process is using the swap space, however, this link may be helpful. Another good one is over here

Also, use a good tool like htop to see which processes are using a lot of memory and how much swap overall is being used.

link|improve this answer
feedback

I suppose you could get a good guess by running top and looking for active processes using a lot of memory. Doing this programatically is harder---just look at the endless debates about the Linux OOM killer heuristics.

Swapping is a function of having more memory in active use than is installed, so it is usually hard to blame it on a single process. If it is an ongoing problem, the best solution is to install more memory, or make other systemic changes.

link|improve this answer
feedback

On MacOSX, you run top command as well but need to type "o" then "vsize" then ENTER.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.