Debugging tools for java.lang.OutOfMemoryError: Java heap space
02/22/2014
If you have a Java app that’s crashing due to out-of-memory errors then you can create a heap dump by utilizing the following flags:
-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp/mydump.hprof
To read the head dump, you’ll need to:
- Install eclipse memory analyzer
- Open eclipse with lots of memory:
eclipse -vmargs -Xmx6G
- Open memory analysis perspective: Window > Open Perspective > Other > Memory Analysis
Leave A Comment