Alternatives for heapdumps creation with higher performance than jmap?

Posted by Christian on Server Fault See other posts from Server Fault or by Christian
Published on 2010-01-18T12:54:04Z Indexed on 2010/03/25 15:23 UTC
Read the original article Hit count: 407

Filed under:
|
|
|

Hi,

I have to create heapdumps, which works nice with jmap. My problem is, that jmap takes very long to create the heapdump file. Especially when the heap is getting bigger (> 1GB) it is taking too long.

One situation as example:
When the server gets into trouble with the heapspace, I want to restart it automatically and create a heapdump before the restart. This works, but takes too long to write the heapdump. This way the server is down for too long. The heapdump creation takes longer than one hour.

I know about -XX:+HeapDumpOnOutOfMemoryError, but most of the time I can find the memory problem before the exception is thrown by the jvm.

Is there an alternative to jmap which writes the heapdumps faster?
A special solution for the example above would also be appreciated.

This question is a mix between programming and system-administration, but I think I'm at the right place here.

© Server Fault or respective owner

Related posts about java

Related posts about heapdump