Are there any tools that are able to get Metaspace dump from a Java8 hotspot vm ?
相关问题
- Analyzing Outlook HANG dump (with GoogleCalendarSy
- JVM abnormal exit - cleanup of system resources
- Sanity check: Rhino does not have a require functi
- JVM crashes with problematic frame [libjvm.so+0x7f
- JVM issues with a large in-memory object
相关文章
- java项目突然挂掉,日志无报错信息
- Java引用分为强引用、软引用、弱引用、虚引用,我怎么能判断出一个对象是哪个引用?
- java.lang.VerifyError: Stack map does not match th
- Do errors thrown within UncaughtExceptionHandler g
- What is the up-front cost of an object being final
- Running Eclipse on Mac - JVM Version 1.7 or greate
- module not found: com.eed3si9n#sbt-assembly;0.14.3
- How and where does allocating a heap memory interp
It seems you encounter a class loading leak.
Use
jmap -clstats PID
to dump class loader statistics;jcmd PID GC.class_stats
to print the detailed information about memory usage of each loaded class. The latter requires-XX:+UnlockDiagnosticVMOptions
.The heap dump will also help, because each class in the Metaspace has a corresponding
java.lang.Class
instance in the heap.