Java Jruby堆转储失败

Java Jruby堆转储失败,java,jruby,puma,heap-dump,Java,Jruby,Puma,Heap Dump,我正在运行一个使用Jruby和Puma的应用程序。我们有一个潜在内存泄漏的问题,我想生成一个堆转储,以便调试。我的本地环境运行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

我正在运行一个使用Jruby和Puma的应用程序。我们有一个潜在内存泄漏的问题,我想生成一个堆转储,以便调试。我的本地环境运行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内存分析器生成堆转储,但我遇到了相同的问题。

这看起来像jdk 1.8中的JVM错误。有关更多信息,请参阅此链接