DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Introducing Graph Concepts in Java With Eclipse JNoSQL, Part 3: Understanding Janus
  • Introducing Graph Concepts in Java With Eclipse JNoSQL, Part 2: Understanding Neo4j
  • Introducing Graph Concepts in Java With Eclipse JNoSQL
  • Simplify NoSQL Database Integration in Java With Eclipse JNoSQL 1.1.3

Trending

  • Key Takeaways From Integrating a RAG Application With LangSmith
  • Why We Chose Iceberg Over Delta After Evaluating Both at Scale
  • The Hidden Bottlenecks That Break Microservices in Production
  • Working With Cowork: Don’t Be Confused
  1. DZone
  2. Coding
  3. Frameworks
  4. Java Heap Dump Analyzer

Java Heap Dump Analyzer

Learn about heap and garbage collection in Java applications and how to take the heap dump of an application and analyze it in Eclipse Memory Analyzer.

By 
Sudeep C M user avatar
Sudeep C M
·
Aug. 03, 18 · Tutorial
Likes (16)
Comment
Save
Tweet
Share
344.4K Views

Join the DZone community and get the full member experience.

Join For Free

Overview

Identifying the reason for an OutOfMemory error in Java applications with a larger heap size is a nightmare for a developer, because most of the OutOfMemory situations may not be identified during the testing phase. It may occur only in production after running for a long time. The purpose of this article is to explain the use of a heap analyzer tool to identify a memory leakage in larger enterprise Java applications, which use a larger size of heaps. Before going to the details, we will discuss the following points:

  • Heap
  • Garbage Collection
  • OutOfMemory

What Is Heap?

The space used by the Java Runtime to allocate memory to Objects and JRE Classes is called Heap. The heap space can be configured using the following JVM arguments:

  • -Xmx<size> — Setting maximum Java heap size
  • -Xms<size> — Setting initial Java heap size

The maximum heap size that can be configured in a 32 bit JVM is 2GB. If any application requires more than 2 GB, it should run on 64 bit JVM. 64MB is the maximum heap size by default.


The Ultimate Java Expert Certification Bundle.*

*Affiliate link. See Terms of Use.

Garbage Collection

One of the advantages of Java over C++ is automatic memory management. In C++, memory can be released manually, but it will happen automatically in Java using a process called garbage collection. Garbage collection will free up the memory of an object that doesn’t have any reference; it will destroy unused objects. The garbage collection process can be tuned for different applications based on the object creation characteristics of the application. This can be achieved through a number of JVM arguments. Following are a few JVM arguments which can be used to tune the garbage collection process:

Option

Description

-XX:-UseParallelGC

Use parallel garbage collection for scavenges.

-XX:-UseParallelOldGC

Use parallel garbage collection for the full collections. Enabling this option automatically sets -XX:+UseParallelGC.

-XX:NewRatio

Ratio of old/new generation sizes. The default value is 2.

-XX:SurvivorRatio

Ratio of eden/survivor space size. The default value is 8.

-XX:ParallelGCThreads

Sets the number of threads used during parallel phases of the garbage collectors. The default value varies with the platform on which the JVM is running

GC Execution has a direct relationship with the size of the Heap.

  • Larger Heap size will increase the GC execution time, but decrease the number of GC executions.
  • Smaller Heap Size will increase the number of GC executions, but decrease the GC execution time

OutOfMemory

A java.lang.OutOfMemoryError will occur when the application tries to add more objects into the heap and there is no space left. This will happen when the maximum heap size set in the start of the application is filled with objects and the garbage collector is not able to free up the memory because the all objects in heap still have some references. This may happen because of two reasons:

  1. The application may need more memory to run; the currently allocated heap size is not enough to accommodate the objects generated during the runtime.

  2. Due to a coding error in the application which is keeping the references of unwanted objects.

The solution for the first reason is to increase the heap size. The solution for the second is to analyze the code flow and heap dump to identify the unwanted objects in heap. To analyze the application heap, we need to take the heap dump and open it in a memory analyzing tool.

In this article, we will discuss on how to take the heap dump of an application running on Oracle Java and analyze it in Eclipse Memory Analyzer.

How to Take Heap Dump

Heap dump can be taken in two ways:

  1. A JVM argument can be added to generate heap dump whenever an OutOfMemoryError occurs.
  2. The -XX:+HeapDumpOnOutOfMemoryError option can be added to generate a heap dump on OutOfMemoryError. By default, the heap dump is created in a file called java_pid pid .hprof in the working directory of the VM, but we can set an alternative path using the JVM option -XX:HeapDumpPath=path. 

  3. Using a jmap tool available with JDK. The following command can be executed from the command line:
  4.  jmap -dump:format=b,file=heap.bin <pid> 

    "<pid>" can be replaced with the process id of the application.

Eclipse Memory Analyzer

Eclipse Memory Analyzer can download from eclipse.org.

Unzip the downloaded file and double click "MemoryAnalyzer" to start the application.

Execute a Java program which is continuously running.

Image title

Take heap dump using jmap:

 jmap -dump:format=b,file=heap.bin 6920 

Image titleIdentify the process id of the running application in Windows from the Task Manager.

Image title

In Linux, to identify the process id, use ps –ef | grep java.

Open the heap dump in Eclipse Memory Analyzer using the option File --> Open Heap Dump.

First, it will prompt you to create a leak suspect report. The user can create it or skip it.

Image title

The "overview" tab of the memory analyzer will show the total size of the heap and a pie chart of object size.

Click on the highest value in the pie chart and select List Objects --> with outgoing references.

It will open a new tab, "List Objects," and expand the tree structure of the object.

The user can expand and find the objects available in heap. In this example, the HeapLoader object consist of a list of School objects, and school objects consist of a list of students.

School List in HeapLoader

Image title

Each school object in List and its attributes

Image title

Student object in school and its attribute

Image title

There is an option available in Eclipse Memory Analyzer to Acquire Heap Dump if the application is running on the same machine. SelectFile --> Acquire Heap Dump to show all Java applications available on the machine. Select the process, browse the path where you want the heap to save. and click "finish."

These are the basic steps to analyze a heap dump. There are more options available in Memory Analyzer, which will give more insight into the heap dump. Eclipse Heap Analyzer can be used for the dumps generated from an application running on Oracle Java.

Sample Application for Testing

The sample application used in the above example consists of two objects, School and Student. Details about the sample application are available here.

References

  • https://www.oracle.com/technetwork/articles/java/vmoptions-jsp-140102.html

  • https://www.eclipse.org/mat/downloads.php

Java (programming language) Dump analyzer Eclipse Error message Heap pollution

Published at DZone with permission of Sudeep C M. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Introducing Graph Concepts in Java With Eclipse JNoSQL, Part 3: Understanding Janus
  • Introducing Graph Concepts in Java With Eclipse JNoSQL, Part 2: Understanding Neo4j
  • Introducing Graph Concepts in Java With Eclipse JNoSQL
  • Simplify NoSQL Database Integration in Java With Eclipse JNoSQL 1.1.3

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook