155

Before actually asking, just to be clear: yes, I know about disk cache, and no, it is not my case :) Sorry, for this preamble :)

I'm using CentOS 5. Every application in the system is swapping heavily, and the system is very slow. When I do free -m, here is what I got:

             total       used       free     shared    buffers     cached
Mem:          3952       3929         22          0          1         18
-/+ buffers/cache:       3909         42
Swap:        16383         46      16337

So, I actually have only 42 Mb to use! As far as I understand, -/+ buffers/cache actually doesn't count the disk cache, so I indeed only have 42 Mb, right? I thought, I might be wrong, so I tried to switch off the disk caching and it had no effect - the picture remained the same.

So, I decided to find out who is using all my RAM, and I used top for that. But, apparently, it reports that no process is using my RAM. The only process in my top is MySQL, but it is using 0.1% of RAM and 400Mb of swap. Same picture when I try to run other services or applications - all go in swap, top shows that MEM is not used (0.1% maximum for any process).

top - 15:09:00 up  2:09,  2 users,  load average: 0.02, 0.16, 0.11
Tasks: 112 total,   1 running, 111 sleeping,   0 stopped,   0 zombie
Cpu(s):  0.0%us,  0.0%sy,  0.0%ni,100.0%id,  0.0%wa,  0.0%hi,  0.0%si,  0.0%st
Mem:   4046868k total,  4001368k used,    45500k free,      748k buffers
Swap: 16777208k total,    68840k used, 16708368k free,    16632k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  SWAP COMMAND
 3214 ntp       15   0 23412 5044 3916 S  0.0  0.1   0:00.00  17m ntpd
 2319 root       5 -10 12648 4460 3184 S  0.0  0.1   0:00.00 8188 iscsid
 2168 root      RT   0 22120 3692 2848 S  0.0  0.1   0:00.00  17m multipathd
 5113 mysql     18   0  474m 2356  856 S  0.0  0.1   0:00.11 472m mysqld
 4106 root      34  19  251m 1944 1360 S  0.0  0.0   0:00.11 249m yum-updatesd
 4109 root      15   0 90152 1904 1772 S  0.0  0.0   0:00.18  86m sshd
 5175 root      15   0 90156 1896 1772 S  0.0  0.0   0:00.02  86m sshd

Restart doesn't help, and, by they way is very slow, which I wouldn't normally expect on this machine (4 cores, 4Gb RAM, RAID1).

So, with that - I'm pretty sure that this is not a disk cache, who is using the RAM, because normally it should have been reduced and let other processes to use RAM, rather then go to swap.

So, finally, the question is - if someone has any ideas how to find out what process is actually using the memory so heavily?

Tim
  • 1,697
  • 2
  • 11
  • 9
  • 1
    Did you ever find the answer to this? – Hackeron Aug 23 '15 at 12:23
  • @Hackeron: OP accepted [this answer](http://superuser.com/a/398870/83694). I know that answer doesn't address [your question](http://superuser.com/q/793192/83694), though. I was able to reproduce your issue on one of my servers, and I'm currently researching if there is a way to troubleshoot it. – Deltik Aug 23 '15 at 12:49
  • @Deltik Ah, ok. Thank you :) - I have 2 servers here that leak all available memory in the space of around 12 hours, let me know if there is anything I can do to help diagnose this. I'm reachable as the nickname "hackeron" on IRC (irc.freenode.org). – Hackeron Aug 23 '15 at 13:54
  • @Hackeron: I wasn't able to find you as "hackeron" on `irc.freenode.org`. I did create a [chatroom for extended discussion here](http://chat.stackexchange.com/rooms/27309/invisible-memory-leak-on-linux). – Deltik Aug 23 '15 at 14:52
  • Worth noting that the ZFS in-memory ARC (and/or L2ARC) cache does not show in `free -m`, but the size of it can be queried on Linux with `cat /proc/spl/kstat/zfs/arcstats | grep data_size`. – kqr Feb 19 '19 at 12:28
  • In top hit "M" to sort by memory used. You want to look at RES and used for used memory and not at VIRT and free which can be deceptive. See the classic https://www.linuxatemyram.com/ – gaoithe Sep 19 '19 at 15:47
  • You can provide some command line options to `top` itself for sorting the output. For eg: To sort based on `%MEM`, high value to low you can give, `top -o +%MEM` OR `top -o %MEM`. To sort low to high value (No one is interested to get this output, but just for knowledge sake, I've provided here). `top -o -%MEM`. – learner Sep 05 '22 at 06:58

9 Answers9

133

On Linux in the top process you can press < key to shift the output display sort left. By default it is sorted by the %CPU so if you press the key 4 times you will sort it by VIRT which is virtual memory size giving you your answer.

Another way to do this is:

ps -e -o pid,vsz,comm= | sort -n -k 2

should give you and output sorted by processes virtual size.

Here's the long version:

ps --everyone --format=pid,vsz,comm= | sort --numeric-sort --key=2
Karlson
  • 2,403
  • 2
  • 17
  • 15
  • That gives me `Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html` on Ubuntu server 11.10. – Oliver Salzburg Mar 09 '12 at 14:36
  • 1
    @OliverSalzburg The issue is `-o` options. RHEL4 this works. RHEL5: `ps -e -o pid,vsz,comm= | sort -n -k 2` works. I'll try 11.10 later tonight but if you find the right sort options before please let me know. `ps -e -o pid,vsz,comm | sort -n -k 2` might work but I don't have a place to verify at the moment. – Karlson Mar 09 '12 at 14:40
  • 2
    I'm not really familiar with the `-ef` option. But this seems to produce reasonable output: `sudo ps axo pid,vsz,comm=|sort -n -k 2` – Oliver Salzburg Mar 09 '12 at 14:43
  • @OliverSalzburg Sorry. Amended (thought I changed it already). It should be `ps -e` or `ps -a` – Karlson Mar 09 '12 at 14:54
  • 2
    Ty, I like the top suggestion of `<` I didn't know that was possible, fedora – SSH This Jun 06 '12 at 00:29
  • 3
    Slightly modified version to get the processes that occupy **RAM** and shows the full command: `ps -e --format=pid,rss,args | sort --numeric-sort --key=2 ` – sengs Sep 10 '18 at 08:16
  • You do not want to sort by vsz but by rss as @sengs shows. rss shows actual USED memory not VIRTUAL memory which will be given back by the system. – gaoithe Sep 19 '19 at 15:45
  • My system used multiple GB of RAM which was not listed by this command. I checked with `free -h` it was under "used" (and missing under "available") which usually means its not used for caching, but executing `sync; echo 3 > /proc/sys/vm/drop_caches` freed it. Are "dentries and inodes" reserving RAM? As far as I know the "page cache" uses only "available" RAM and does not really reserve something. – mgutt Oct 16 '20 at 23:03
  • You can provide some command line options to `top` itself for sorting the output. For eg: To sort based on `%MEM`, high value to low you can give, `top -o +%MEM` OR `top -o %MEM` To sort low to high value (No one is interested to get this output, but just for knowledge sake, I've provided here). `top -o -%MEM". – learner Sep 05 '22 at 06:51
111

Show the processes memory in megabytes and the process path.

ps aux  | awk '{print $6/1024 " MB\t\t" $11}'  | sort -n
Weslor
  • 103
  • 3
notnull
  • 1,121
  • 1
  • 7
  • 2
  • 8
    Welcome to Super User. Can you expand your answer to explain what this code does and how it addresses the problem? Unexplained code is [discouraged](http://meta.stackexchange.com/questions/148272), because it doesn't teach the solution. Thanks. – fixer1234 Feb 09 '16 at 22:03
  • 15
    I'm surprised this answer is downvoted and has a comment asking to explain it.. it's short enough that it should be clear what it does (pipes ps aux into awk and then sort), and in the context of the question, it shows which processes are using the most RAM. I think it's a fine answer. – John May 10 '16 at 22:51
  • is it possible to ignore `0 MB` processes? – alper Dec 27 '21 at 02:22
  • 1
    @alper pipe through `grep -v '^0 MB'`. `^0 MB` selects lines starting with `0 MB` and `-v` inverses the matching – Ciprian Tomoiagă Dec 29 '21 at 14:02
  • For ease of reading, doing some number formatting sure makes this easier to use `ps aux | awk '{printf "%8.3f MB\t\t%s\n", $6/1024, $11}' | sort -n | grep -v '^ 0.000 MB'` Explanation: * process list including all processes on the system * displays the process memory, in MB, rounding to a consistent 3 decimal places and left-padding spaces so that the string is 8 characters so the decimals all line up and the process name. * sorting by the first key, numerically * removing lines starting with " 0.000 MB" (including the padded spaces) – michaelkrieger Feb 23 '22 at 19:22
14

Just a side note on a server showing the same symptoms but still showing memory exhaustion. What ended up finding was a sysctl.conf from a box with 32 GB of RAM and setup for a DB with huge pages configured to 12000. This box only has 2 GB of RAM so it was assigning all free RAM to the huge pages (only 960 of them). Setting huge pages to 10, as none were used anyway, freed up all of the memory.

A quick check of /proc/meminfo to look for the HugePages_ settings can be a good start to troubleshooting at least one unexpected memory hog.

Death Rider
  • 141
  • 1
  • 2
  • 3
    I recently had another server where this was the problem. If your organization has ex-Oracle employees in it, this setting may be your culprit. – fields Jul 15 '14 at 14:20
8

Make a script called show-memory-usage.sh with content:

#!/bin/sh
ps -eo rss,pid,user,command | sort -rn | head -$1 | awk '{ hr[1024**2]="GB"; hr[1024]="MB";
 for (x=1024**3; x>=1024; x/=1024) {
 if ($1>=x) { printf ("%-6.2f %s ", $1/x, hr[x]); break }
 } } { printf ("%-6s %-10s ", $2, $3) }
 { for ( x=4 ; x<=NF ; x++ ) { printf ("%s ",$x) } print ("\n") }
 '

Make it executable with chmod +x show-memory-usage.sh and call it like this ./show-memory-usage.sh 10 (10 => show max 10 lines)

Output Example:

5.54   GB 12783  mysql      /usr/sbin/mysqld

1.02   GB 27582  root       /usr/local/cpanel/3rdparty/bin/clamd

131.82 MB 1128   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start inventory.mass.update --single-thread --max-messages=10000

131.21 MB 1095   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start product_action_attribute.update --single-thread --max-messages=10000

131.19 MB 1102   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start product_action_attribute.website.update --single-thread --max-messages=10000

130.80 MB 1115   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start exportProcessor --single-thread --max-messages=10000

130.69 MB 1134   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start inventory.reservations.update --single-thread --max-messages=10000

130.69 MB 1131   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start inventory.reservations.cleanup --single-thread --max-messages=10000

130.69 MB 1107   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start codegeneratorProcessor --single-thread --max-messages=10000

130.58 MB 1120   company+   /opt/cpanel/ea-php73/root/usr/bin/php /home/companyde/redesign.company.de/bin/magento queue:consumers:start inventory.source.items.cleanup --single-thread --max-messages=10000
Black
  • 7,349
  • 17
  • 40
  • 61
Felipe
  • 2,000
  • 3
  • 16
  • 14
  • 13
    Why? What does this do? How does it work? Don't tell people to run random code; explain its purpose and how it works. – user Oct 21 '16 at 11:01
  • 4
    Figure I'll explain the code for those that don't understand as it appears to be safe to run, but the downvote may ward off those it would be useful towards. It's running the same command as is in [above answers](https://superuser.com/a/398870/338974), but it's adding formatting with AWK. I've not personally run the script as I have no use for it, but explaining it helps those in need of some formatting. – Dooley_labs Jan 04 '17 at 05:05
  • 1
    I've read the code and run it. It aligns fields like a table, and formats consumed resident memory with prefixes (like 1.12 GB, 582.79 MB). – Stéphane Gourichon Mar 26 '19 at 11:17
  • I added an output example and improved the script to make it accept an arguemnt for head. – Black Aug 26 '20 at 11:08
  • @Black Thanks for your post, and how to remove the blank lines between each item? – roachsinai Nov 12 '21 at 03:29
7

In my case the issue was that the server was a VMware virtual server with vmw_balloon module enabled:

$ lsmod | grep vmw_balloon
vmw_balloon            20480  0
vmw_vmci               65536  2 vmw_vsock_vmci_transport,vmw_balloon

Running:

$ vmware-toolbox-cmd stat balloon
5189 MB

So around 5 GB of memory was in fact reclaimed by the host. So despite having 8 GB to my VM "officially", in practice it was much less:

$ free
              total        used        free      shared  buff/cache   available
Mem:        8174716     5609592       53200       27480     2511924     2458432
Swap:       8386556        6740     8379816
Mitar
  • 309
  • 5
  • 14
2

I reference this and Total memory used by Python process? - Stack Overflow, that is my answer. I get a specific process (python) count tool, now.

# Megabyte.
$ ps aux | grep python | awk '{sum=sum+$6}; END {print sum/1024 " MB"}'
87.9492 MB

# Byte.
$ ps aux | grep python | awk '{sum=sum+$6}; END {print sum " KB"}'
90064 KB

Attach my process list.

$ ps aux  | grep python
root       943  0.0  0.1  53252  9524 ?        Ss   Aug19  52:01 /usr/bin/python /usr/local/bin/beaver -c /etc/beaver/beaver.conf -l /var/log/beaver.log -P /var/run/beaver.pid
root       950  0.6  0.4 299680 34220 ?        Sl   Aug19 568:52 /usr/bin/python /usr/local/bin/beaver -c /etc/beaver/beaver.conf -l /var/log/beaver.log -P /var/run/beaver.pid
root      3803  0.2  0.4 315692 36576 ?        S    12:43   0:54 /usr/bin/python /usr/local/bin/beaver -c /etc/beaver/beaver.conf -l /var/log/beaver.log -P /var/run/beaver.pid
jonny    23325  0.0  0.1  47460  9076 pts/0    S+   17:40   0:00 python
jonny    24651  0.0  0.0  13076   924 pts/4    S+   18:06   0:00 grep python

Reference

2

You can also use ps command to get more information about process.

ps aux | less
Atul
  • 156
  • 1
  • 1
  • 6
1

This also takes the process id, sorts by MB used, and outlines the command (that created the process):

ps aux | awk '{print $6/1024 " MB\t\t" $2 "\t" $11}' | sort -n

prosti
  • 119
  • 4
0

My ubuntu server DISTRIB RELEASE=18.04 on Hyper-V had most of memory used, but all processes were fine. (Admitted I've removed snapd and unattended-upgr packages, but 95% of memory were still used.)

The answer is Hyper-V has dynamic memory, so it took memory for main system use and ubuntu flagged it as used.

Hope it helps someone.