My team is running into difficulties when trying to take good heap dumps triggered by OutOfMemoryErrors. For specific reasons we are currently taking the dumps with jmap called from a bash script instead of using the HeapDumpOnOutOfMemoryError flag. We're using a 64-bit 1.6 JVM with a heap size around 3 GB. Our heap dumps fail 90% of the time (guesstimate).

Is there anything we can do to improve our odds of getting a clean heap dump we can use to troubleshoot memory problems? I have read that jmap had major issues in Java 1.4 but that those issues should be mostly addressed now.

link|improve this question
4  
I nominate this question for "most unintentionally disgusting-sounding". – phoebus Feb 6 '10 at 16:04
Hah- I thought about making it intentionally disgusting-sounding but I'm new here and I wasn't sure how the community would take that :). – karlcyr Feb 6 '10 at 16:21
feedback

4 Answers

we have a JSP that queries ManagementFactory.getThreadMXBean() and produces a report. May not be useful when the app has crashed, but if you poll every minute or so, you'll get an idea of what's happening.

More info here.

link|improve this answer
feedback

you could monitor your application via jmx from the outside. when you know some metrics which indicate an upcoming OutOfMemory, you could trigger a jmap run before the exception is thrown.

link|improve this answer
Thanks Christian- is jmap more likely to be reliable before the error is thrown? – karlcyr Feb 6 '10 at 21:22
jmap will still need some time to get you a heap dump. but you will get a full heapdump as long as your jvm/tomcat is mostly responsible. – Christian Feb 7 '10 at 10:05
I think the cleanest and easiest tool to do this is "Visual VM". It might be out of scope but making a custom plugin for VisualVM that detects the condition and takes the automatic dump from within VisualVm would be awesome IMHO. – djangofan Apr 7 '10 at 17:53
feedback

Which is your operating system? (I can't add comments).

For Solaris we get better results first forcing a core dump (gcore <pid>) and then attaching jmap to the core dump file (jmap -heap:format=b <path to java bin> <path to core>)

gcore is a *nix utility to generate an image of a running program. See link.

link|improve this answer
tried it with gdb on linux and it works great. – Christian Mar 25 '10 at 10:17
which JDK has "gcore" ? mine, Sun 32 bit jdk for linux 1.6.0.20 doesnt have it. – djangofan Mar 17 '11 at 23:27
Edited with gcore clarification. – antispam Mar 18 '11 at 12:49
feedback

Thanks to you all for your suggestions.

What we wound up doing is writing a script to actively monitor the garbage collection logs. In our experience, back-to-back Full GC's almost always precede an OOM, so our script detects this event, gracefully removes the server from the load balancing pool, and forces the heap dump. This has greatly increased our effectiveness.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.