vote up 23 vote down star
15

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 http://www.softwareverify.com/python/memory/index.html

and open source 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

flag

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 at 14:21

3 Answers

vote up 13 vote down check

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 9 vote down

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.

link|flag
but is it only for cherrypy, how to use it with a sinple script? – Anurag Uniyal Sep 21 '08 at 5:05
1  
It is not for CherryPy. Think of CherryPy as a GUI toolkit. – sanxiyn Sep 21 '08 at 7:07
fwiw, the pysizer page pysizer.8325.org seems to recommend heapy, which it says is similar – Jacob Gabrielson Jul 7 at 22:48

Your Answer

Get an OpenID
or

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