Jruby堆转储失败

时间:2015-04-29 00:00:18

标签: java jruby puma heap-dump

我正在使用Jruby和Puma运行APP。我们遇到潜在的内存泄漏问题,我想生成堆转储,以便我可以调试。我的本地环境正在运行Linux Mint 17。 我运行了以下内容:

jmap -histo:live 6450

这导致:

6450: Unable to open socket file: target process not responding or HotSpot VM not loaded  The -F option can be used when the target process is not responding

我也试过这个:

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

结果

6450: Unable to open socket file: target process not responding or HotSpot VM not loaded

正如propmt建议我尝试使用-F标志运行:

jmap -F -dump:live,format=b,file=heap.bin 6450
Attaching to process ID 6450, please wait...
Debugger attached successfully.
Server compiler detected.
JVM version is 25.45-b02
Dumping heap to heap.bin ...
Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at sun.tools.jmap.JMap.runTool(JMap.java:201)
at sun.tools.jmap.JMap.main(JMap.java:130)
Caused by: sun.jvm.hotspot.utilities.AssertionFailure: can not get class     data for java/lang/UNIXProcess$Platform$$Lambda$10x0000000100393428
at sun.jvm.hotspot.utilities.Assert.that(Assert.java:32)
at sun.jvm.hotspot.utilities.HeapHprofBinWriter.writeInstance(HeapHprofBinWriter.java:803)
at sun.jvm.hotspot.utilities.AbstractHeapGraphWriter$1.doObj(AbstractHeapGraphWriter.java:95)
at sun.jvm.hotspot.oops.ObjectHeap.iterateLiveRegions(ObjectHeap.java:353)
at sun.jvm.hotspot.oops.ObjectHeap.iterate(ObjectHeap.java:171)
at sun.jvm.hotspot.utilities.AbstractHeapGraphWriter.write(AbstractHeapGraphWriter.java:51)
at sun.jvm.hotspot.utilities.HeapHprofBinWriter.write(HeapHprofBinWriter.java:433)
at sun.jvm.hotspot.tools.HeapDumper.run(HeapDumper.java:62)
at sun.jvm.hotspot.tools.Tool.startInternal(Tool.java:260)
at sun.jvm.hotspot.tools.Tool.start(Tool.java:223)
at sun.jvm.hotspot.tools.Tool.execute(Tool.java:118)
at sun.jvm.hotspot.tools.HeapDumper.main(HeapDumper.java:83)
... 6 more`

有没有人对如何解决这些错误并生成堆转储有任何建议?我已经尝试过使用jvisualvm和Eclipse Memory Analyzer来生成堆转储,我遇到了同样的问题。

1 个答案:

答案 0 :(得分:2)

这看起来像jdk 1.8_45中的JVM错误,请参阅此链接以获取更多信息

https://bugs.openjdk.java.net/browse/JDK-8065318