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.

I want to know the memory usage of my Python application and specifically want to know what code blocks/portions or objects are consuming most memory. Google search shows a commercial one is Python Memory Validator.

And open source ones are PySizer and Heapy.

I haven't tried anyone, so I wanted to know which one is the best considering:

  1. Gives most details.

  2. I have to do least or no changes to my code.

share|improve this question
5  
Link to PySizer: pysizer.8325.org Link to Heapy: guppy-pe.sourceforge.net/#Heapy Feel free to update the text to add the links as hyperlinks. – dkagedal Oct 2 '09 at 14:21
1  
@dkagedal: Done. Thank you very much for the links. – Peter Mortensen Dec 20 '09 at 12:59
It is worth noting that Python Memory Validator is Windows-only. – taleinat Aug 5 '10 at 8:49
2  
For finding the sources of leaks I recommend objgraph. – pi. Nov 15 '12 at 10:23

6 Answers

up vote 118 down vote accepted

Heapy is quite simple to use. At some point in your code, you have to write the following:

from guppy import hpy
h = hpy()
print h.heap()

This gives you some output like this:

Partition of a set of 132527 objects. Total size = 8301532 bytes.
Index  Count   %     Size   % Cumulative  % Kind (class / dict of class)
0  35144  27  2140412  26   2140412  26 str
1  38397  29  1309020  16   3449432  42 tuple
2    530   0   739856   9   4189288  50 dict (no owner)

You can also find out from where objects are referenced and get statistics about that, but somehow the docs on that are a bit sparse.

There is a graphical browser as well, written in Tk.

share|improve this answer
6  
Heapy is far from simple to use, but it is powerful. – Eddified Mar 23 '10 at 20:28
1  
sadly doesn't seem to build or install in osx.. 10.4 at least. – shigeta Aug 28 '11 at 3:06
1  
It builds on OS X 10.7.1 with homebrew, but sadly doesn't run :-( – Edward Grefenstette Sep 12 '11 at 0:53
18  
If you're on Python 2.7 you may need the trunk version of it: sourceforge.net/tracker/…, pip install https://guppy-pe.svn.sourceforge.net/svnroot/guppy-pe/trunk/guppy – James Snyder Jan 3 '12 at 20:06
8  
The heapy docs are... not good. But I found this blog post very helpful for getting started: smira.ru/wp-content/uploads/2011/08/heapy.html – Joe Shaw Feb 13 '12 at 19:58
show 3 more comments

I recommend Dowser. It is very easy to setup, and you need zero changes to your code. You can view counts of objects of each type through time, view list of live objects, view references to live objects, all from the simple web interface.

# memdebug.py

import cherrypy
import dowser

def start(port):
    cherrypy.tree.mount(dowser.Root())
    cherrypy.config.update({
        'environment': 'embedded',
        'server.socket_port': port
    })
    cherrypy.server.quickstart()
    cherrypy.engine.start(blocking=False)

You import memdebug, and call memdebug.start. That's all.

I haven't tried PySizer or Heapy. I would appreciate others' reviews.

share|improve this answer
1  
but is it only for cherrypy, how to use it with a sinple script? – Anurag Uniyal Sep 21 '08 at 5:05
8  
It is not for CherryPy. Think of CherryPy as a GUI toolkit. – sanxiyn Sep 21 '08 at 7:07
1  
fwiw, the pysizer page pysizer.8325.org seems to recommend heapy, which it says is similar – Jacob Gabrielson Jul 7 '09 at 22:48
1  
It looks as though your above code is for use with CherryPy 2.x. For CherryPy 3.x, remove the blocking=False from the cherrypy.engine.start() call. – Craig McQueen Sep 8 '10 at 3:47
2  
There is a generic WSGI port of Dowser called Dozer, which you can use with other web servers as well: pypi.python.org/pypi/Dozer – Joe Shaw Feb 13 '12 at 19:58
show 1 more comment

Since nobody has mentioned it I'll point to my module memory_profiler which is capable of printing line-by-line report of memory usage and works on Unix and Windows (needs psutil on this last one). Output is not very detailed but the goal is to give you an overview of where the code is consuming more memory and not a exhaustive analysis on allocated objects.

After decorating your function with @profile and running your code with the -m memory_profiler flag it will print a line-by-line report like this:

Line #    Mem usage  Increment   Line Contents
==============================================
     3                           @profile
     4      5.97 MB    0.00 MB   def my_func():
     5     13.61 MB    7.64 MB       a = [1] * (10 ** 6)
     6    166.20 MB  152.59 MB       b = [2] * (2 * 10 ** 7)
     7     13.61 MB -152.59 MB       del b
     8     13.61 MB    0.00 MB       return a
share|improve this answer
1  
+1 looks simple and hence useful for quick debugging – Anurag Uniyal May 15 '12 at 2:50
Yes but I don't think this is available for windows. Is a Cross Platform version of this available? Maybe, I should think of writing one. – user67024 Jun 25 '12 at 11:53
1  
It does work on windows (the psutil module is required in that platform though). – Fabian Pedregosa Jun 26 '12 at 8:16
+1 really good. easy to install and easy to use. And easy to check the memory consumption line by line. Great!!! – sgwong513 Feb 15 at 22:53
1  
Excellent! This saved my life!! – syam May 5 at 5:12
show 1 more comment

Consider the objgraph library (see http://www.lshift.net/blog/2008/11/14/tracing-python-memory-leaks for an example use case).

share|improve this answer
2  
objgraph helped me solve a memory leak issue I was facing today. objgraph.show_growth() was particularly useful – Ngure Nyaga Oct 11 '12 at 19:36

I found meliae to be much more functional than Heapy or PySizer. If you happen to be running a wsgi webapp, then Dozer is a nice middleware wrapper of Dowser

share|improve this answer

Muppy is (yet another) Memory Usage Profiler for Python. The focus of this toolset is laid on the identification of memory leaks.

Muppy tries to help developers to identity memory leaks of Python applications. It enables the tracking of memory usage during runtime and the identification of objects which are leaking. Additionally, tools are provided which allow to locate the source of not released objects.

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.