Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jvisualvm: Stuck on “Loading Heap Dump...” screen

I am using jdk64 and my java version is "1.6.0_24". My tomcat is running with -Xmx7196m, and jvisualvm is running with -J-Xms2048m -J-Xmx3072m. I took a heap dump of my tomcat java process and size of my .hprof file is around 5.5 GB. When I try to open this heap dump, it just stuck on Loading Heap Dump... screen.

I also looked at the heap consumption of VisualVM while it is trying to open the heap dump, but that goes around 500MB only.

NOTE: I did look at jvisualvm: Stuck on “Loading Heap Dump” screen question but it is different and does not address my question.

like image 246
Kuldeep Jain Avatar asked Mar 11 '14 06:03

Kuldeep Jain


People also ask

How long does heap dump take?

Taking a heap dump pauses the running JVM for a relatively brief period. Generating a dump takes about 2 sec per 1 GB of used heap. So if, for example, your app uses 4 GB, it would be stopped for 8 seconds.

How do I get rid of a heap dump of running?

Right-click on one of the Java process. Click on the 'Heap Dump' option on the drop-down menu. Heap dump will be generated. File path where heap dump is generated will be specified in the Summary Tab > Basic Info > File section.

How do I get rid of heap dump on memory error?

In order to capture a heap dump automatically, we need to add the HeapDumpOnOutOfMemoryError command-line option that generates a heap dump when a java. lang. OutOfMemoryError is thrown.

How long does Java heap dump take?

The process in summary as mentioned takes about 20-30 seconds. I recommend you to do it as fast as you can. As soon as you are done with the first step you can restart your application to get it up and running again. In the second step we are going to convert the java core file to a java heap dump file.


2 Answers

These symptoms also occured when I tried to load a large heap dump and had low disk space ( I assume for temporary file use by visual vm), running on a Mac. After I freed up diskspace the file loaded.

like image 136
Ashley Avatar answered Oct 06 '22 08:10

Ashley


I hit a similar snag but realized that there was an exception; it can be hard to spot:

enter image description here

I don't know whether it will always displays an error like that (I'm using v1.3.9).

like image 26
davidinjc Avatar answered Oct 06 '22 07:10

davidinjc