HOW TO CAPTURE JAVA HEAP DUMPS? – 8 OPTIONS

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, first 3 are effective options to use and others are good options to be aware.

1. yCrash Open Source Script

The yCrash script is a powerful open source script that not only captures heap dump, but also 16 essential artifacts from your application to troubleshoot performance problems. Here’s how you can utilize the yCrash script to capture heap dump and more:

  1. Download the latest yc-data-script from this location
  2. Unzip the downloaded yc-agent-latest.zip file. (Say you are unzipping in ‘/opt/workspace/yc-agent-latest’ folder)
  3. In the unzipped folder you will find yc-data-script by operating system:
    • linux/yc – If you are running on Unix/Linux, then use this script.
    • windows/yc.exe – If you are running on Windows, then use this script.
    • mac/yc – If you are running on MAC, then use this script.
  4. You can execute the yc script by issuing following command:
./yc -j {JAVA_HOME} -onlyCapture -p {PID} -hd

where
JAVA_HOME is the home directory where JDK is installed
PID is the troubled target process ID

Example:

./yc -j /usr/java/jdk1.8.0_141 -onlyCapture -p 15326 -hd

When you execute the command, yCrash script will capture all the application level and system level artifacts/logs from the server from the target application for analysis. Captured artifacts will be compressed into a zip file and stored in the current directory where the above command was executed. The zip file will have the name in the format: ‘yc-YYYY-MM-DDTHH-mm- ss.zip’. 

Example: ‘yc-2021-03 06T14-02-42.zip’.

For more details visit it’s GitHub respository.

2. jmap

jmap print heap dumps into specified file location. This tool is packaged within JDK. It can be found in \bin folder.

Here is how you should invoke jmap:

jmap -dump:format=b,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:format=b,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.

3. HeapDumpOnOutOfMemoryError

When application experience java.lang.OutOfMemoryError, it’s ideal to capture heap dump right at that point to 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.

E-Creativity Best Practice: Keep this property configured in all the applications at all the times, as you never know when OutOfMemoryError will happen.jcmd3.

4. jcmd

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

5. JVisualVM

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:

  1. Launch jvisualvm under \bin\ folder
  2. Right click on one of the Java process
  3. Click on the ‘Heap Dump’ option on the drop-down menu
  4. Heap dump will be generated
  5. File path where heap dump is generated will be specified in the Summary Tab > Basic Info > File section
Heapdump1
Fig: Capturing Heap Dump from JVisualVM

6. JMX

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:

  1. outputFile: File path where heap dump should be written
  2. live: When ‘true’ is passed only live objects in heap are captured

You can use JMX clients such as JConsole,  jmxsh, Java Mission Control to invoke this MBean operation.

Heap2
Fig: Using Java Mission Control as the JMX client to generate heap dump

7. Programmatic Approach

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.

8. IBM Administrative Console

If your application is running on IBM Websphere Application Server, you can use the administrative console to generate heaps.

Steps:

  1. Start administrative console
  2. In the navigation pane, click Troubleshooting > Java dumps and cores
  3. Select the server_name for which you want to generate the heap dump
  4. Click Heap dump to generate the heap dump for your specified server

You can also use wsadmin to generate heap dumps.

Additional Knowledge

Java Heap Stack

35 thoughts on “HOW TO CAPTURE JAVA HEAP DUMPS? – 8 OPTIONS

Add yours

  1. Great stuff here, Ram, as always.

    For readers, you may want to see also a more recent video he did, walking through the process of generating and using MAT to analyze heap dumps: https://blog.heaphero.io/2021/03/08/troubleshooting-outofmemoryerror-heap-dump-eclipse-mat/. See also his post on using MAT to analyze heapdumps: https://blog.tier1app.com/2015/06/01/eclipse-mat-titbits/

    Of course, you DEFINITELY want to look also at his tools https://heaphero.io, which doesn’t require you downloading or installing anything, as well as the related https://ycrash.io service.

  2. Section 1 about jmap says “Note: It’s quite important to pass “live” option.”, but the actual example doesn’t pass the “live” option. Also, I would recommend using jcmd instead of jmap, since it’s simpler and does what jmap does if the “live” option is specified.

Leave a Reply

Powered by WordPress.com.

Up ↑

%d bloggers like this: