Useful for optimizing memory consumption, a heap dump is a snapshot of the memory of a Java process. In this article, Ram Lakshmanan explores seven different options to capture heap dumps.
Java heap dumps are vital artifacts to diagnose memory-related problems such as slow memory leaks, Garbage Collection problems, and java.lang.OutOfMemoryError. They are also vital artifacts to optimize the memory consumption.
There are great tools like Eclipse MAT and Heap Hero to analyze heap dumps. However, you need to provide these tools with heap dumps captured in the correct format and correct point in time.
This article gives you multiple options to capture heap dumps. However, in my opinion, the first three are effective options to use and others are good options to be aware.
jmap print heap dumps into specified file location. This tool is packaged within JDK. It can be found in <JAVA_HOME>\bin folder.
Here is how you should invoke jmap:
jmap -dump:live,file=<file-path> <pid>
where
pid: is the Java Process Id, whose heap dump should be captured
file-path: is the file path where heap dump will be written in to.
Example:
jmap -dump:live,file=/opt/tmp/heapdump.bin 37320
Note: It’s quite important to pass “live” option. If this option is passed, then only live objects in the memory are written into the heap dump file. If this option is not passed, all the objects, even the ones which are ready to be garbage collected are printed in the heap dump file. It will increase the heap dump file size significantly. It will also make the analysis tedious. To troubleshoot memory problems or optimize memory, just “live” option should suffice the need.
When an application experiences java.lang.OutOfMemoryError, it’s ideal to capture heap dump right at that point. This helps you diagnose the problem because you want to know what objects were sitting in memory and what percentage of memory they were occupying when java.lang.OutOfMemoryError occurred.
However, due to the heat of the moment, most times, IT/Operations team forgets to capture heap dump. Not only that, they also restart the application. It’s extremely hard to diagnose any memory problems without capturing heap dumps at right time.
That’s where this option comes very handy. When you pass -XX:+HeapDumpOnOutOfMemoryError
system property during application startup, JVM will capture heap dumps right at the point when JVM experiences OutOfMemoryError.
Sample Usage:
-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/opt/tmp/heapdump.bin
Note: Captured heap dump will be printed at the location specified by ‘-XX:HeapDumpPath’ system property.
Best Practice: Keep this property configured in all the applications at all the times, as you never know when OutOfMemoryError will happen.jcmd3.
jcmd tool is used to send diagnostic command requests to the JVM. It’s packaged as part of JDK. It can be found in \bin folder.
Here is how you should invoke jcmd:
jcmd <pid> GC.heap_dump <file-path>
where
pid: is the Java Process Id, whose heap dump should be captured
file-path: is the file path where heap dump will be written in to.
Example:
jcmd 37320 GC.heap_dump /opt/tmp/heapdump.bin
JVisualVM is a monitoring, troubleshooting tool that is packaged within the JDK. When you launch this tool, you can see all the Java processes that are running on the local machine. You can also connect to java process running on remote machine using this tool.
Steps:
Fig: Capturing Heap Dump from JVisualVM
There is a com.sun.management:type=HotSpotDiagnostic MBean. This MBean has ‘dumpHeap’ operation. Invoking this operation will capture the heap dump. ‘dumpHeap’ operation takes two input parameters:
You can use JMX clients such as JConsole, jmxsh, or Java Mission Control to invoke this MBean operation.
Fig: Using Java Mission Control as the JMX client to generate heap dump
Instead of using tools, you can also programmatically capture heap dumps from the application. There might be cases where you want to capture heap dumps based on certain events in the application. Here is a good article from Oracle which gives the source code for capturing heap dumps from the application by invoking the com.sun.management:type=HotSpotDiagnostic MBean JMX Bean, that we discussed in the above approach.
If your application is running on IBM Websphere Application Server, you can use the administrative console to generate heaps.
Steps:
You can also use wsadmin to generate heap dumps.