Tagged Questions

3
votes
4answers
2k views

How to debug a MemoryError in Python? Tools for tracking memory use?

I have a Python program that dies with a MemoryError when I feed it a large file. Are there any tools that I could use to figure out what's using the memory? This program ran fine on smaller input ...
0
votes
1answer
82 views

Stack trace for thread causing an OOM

I have a java application which is getting an OutOfMemoryError, for heap space. I've enabled -XX:HeapDumpOnOutOfMemoryError, and have the resultant hprof file. The dump, however, shows that there is ...