Jruby 堆转储失败

Jruby Heap Dump Failure

我正在 运行使用 Jruby 和 Puma 开发一个应用程序。我们有一个潜在的内存泄漏问题,我想生成一个堆转储以便我可以调试。我的本地环境是 运行ning 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

正如提示所建议的那样,我尝试了 运行 -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$$Lambdax0000000100393428
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.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 内存分析器生成堆转储,我 运行 遇到了同样的问题。

这看起来像是 jdk 1 中的 JVM 错误。8_45请参阅此 link 了解更多信息

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