Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
Duplicate: stackoverflow.com/questions/897941/… – Martin Geisler Jun 2 '09 at 10:35

5 Answers

up vote 20 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
share|improve this answer
3  
The Windows code doesn't work for me. This change does: return int(result[0].WorkingSet) – John Fouhy Aug 31 '10 at 0:46

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.

share|improve this answer
1  
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
Note: On linux ru_maxrss returns a value indicating the number of memory pages used. ru_idrss returns private memory use in kilobytes. – Ben DeMott Feb 12 at 22:34
show 1 more comment

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.

share|improve this answer

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.

share|improve this answer

Using sh and os to get into python bayer's answer.

float(sh.awk(sh.ps('u','-p',os.getpid()),'{sum=sum+$6}; END {print sum/1024}'))

Answer is in megabytes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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