up vote 11 down vote favorite
4
share [g+] share [fb]

Is there a way for a Python program to determine how much memory it's currently using? I've seen discussions about memory usage for a single object, but what I need is total memory usage for the process, so that I can determine when it's necessary to start discarding cached data.

link|improve this question

2  
Duplicate: stackoverflow.com/questions/897941/… – Martin Geisler Jun 2 '09 at 10:35
feedback

4 Answers

up vote 12 down vote accepted

On Windows, you can use WMI (home page, cheeseshop):


def memory():
    import os
    from wmi import WMI
    w = WMI('.')
    result = w.query("SELECT WorkingSet FROM Win32_PerfRawData_PerfProc_Process WHERE IDProcess=%d" % os.getpid())
    return int(result[0]['WorkingSet'])

On Linux (from python cookbook http://code.activestate.com/recipes/286222/:

import os
_proc_status = '/proc/%d/status' % os.getpid()

_scale = {'kB': 1024.0, 'mB': 1024.0*1024.0,
          'KB': 1024.0, 'MB': 1024.0*1024.0}

def _VmB(VmKey):
    '''Private.
    '''
    global _proc_status, _scale
     # get pseudo file  /proc/<pid>/status
    try:
        t = open(_proc_status)
        v = t.read()
        t.close()
    except:
        return 0.0  # non-Linux?
     # get VmKey line e.g. 'VmRSS:  9999  kB\n ...'
    i = v.index(VmKey)
    v = v[i:].split(None, 3)  # whitespace
    if len(v) < 3:
        return 0.0  # invalid format?
     # convert Vm value to bytes
    return float(v[1]) * _scale[v[2]]


def memory(since=0.0):
    '''Return memory usage in bytes.
    '''
    return _VmB('VmSize:') - since


def resident(since=0.0):
    '''Return resident memory usage in bytes.
    '''
    return _VmB('VmRSS:') - since


def stacksize(since=0.0):
    '''Return stack size in bytes.
    '''
    return _VmB('VmStk:') - since
link|improve this answer
1  
The Windows code doesn't work for me. This change does: return int(result[0].WorkingSet) – John Fouhy Aug 31 '10 at 0:46
feedback

Heapy (and friends) may be what you're looking for.

Also, caches typically have a fixed upper limit on their size to solve the sort of problem you're talking about. For instance, check out this LRU cache decorator.

link|improve this answer
feedback

On unix, you can use the ps tool to monitor it:

$ ps u -p 1347 | awk '{sum=sum+$6}; END {print sum/1024}'

where 1347 is some process id. Also, the result is in MB.

link|improve this answer
feedback

You could also use the getrusage() function from the standard library module resource. The resulting object has the attribute ru_maxrss, which gives total memory usage for the calling process:

>>> resource.getrusage(resource.RUSAGE_SELF).ru_maxrss
2656

The Python docs aren't clear on what the units are exactly, but the Mac OS X man page for getrusage(2) describes the units as kilobytes. The Linux man page isn't clear, but it seems to be equivalent to the information from /proc/self/status, which is in kilobytes.

The getrusage() function can also be given resource.RUSAGE_CHILDREN to get the usage for child processes, and (on some systems) resource.RUSAGE_BOTH for total (self and child) process usage.

As resource is a standard library module, it should be cross-platform, and should work on all Unixes (and maybe even Windows).

If you only care about Linux, you can just check the /proc/self/status file as described in a similar question.

link|improve this answer
Don't post the same answer on two duplicate questions. The correct thing to do when you find duplicates is to flag one as a duplicate (flag -> it doesn't belong here -> exact duplicate -> give the link to the other question). If the answer works for both but the questions aren't duplicates, then it's OK to post the same thing multiple times. – agf Oct 6 '11 at 1:27
Okay, will do. I wasn't sure if SO had a process for merging questions or what. The duplicate post was partly to show people there was a standard library solution on both questions... and partly for the rep. ;) Should I delete this answer? – Nathan Craike Oct 6 '11 at 3:19
Oh, it appears I can't flag duplicates with my current rep - the "flag" link under questions doesn't even appear for me. – Nathan Craike Oct 6 '11 at 3:48
Now you've got more than enough rep to flag :) – agf Oct 6 '11 at 14:11
feedback

Your Answer

 
or
required, but never shown

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