1. jmap
1.1 概述
JVM Memory Map命令用于生成heap dump文件,如果不使用这个命令,还可以使用-XX:+HeapDumpOnOutOfMemoryError参数来让虚拟机出现OOM的时候自动生成dump文件。jmap不仅能生成dump文件,还可以查询finalize执行队列、Java堆和老年代的详细信息,如当前使用率、当前使用的是哪种收集器等。
root@406-pfizer-collect-deploy-b68d6ffdf-cws5d:/# jmap
Usage:
jmap [option] <pid>
(to connect to running process)
jmap [option] <executable <core>
(to connect to a core file)
jmap [option] [server_id@]<remote server IP or hostname>
(to connect to remote debug server)
where <option> is one of:
<none> to print same info as Solaris pmap
-heap to print java heap summary
-histo[:live] to print histogram of java object heap; if the "live"
suboption is specified, only count live objects
-clstats to print class loader statistics
-finalizerinfo to print information on objects awaiting finalization
-dump:<dump-options> to dump java heap in hprof binary format
dump-options:
live dump only live objects; if not specified,
all objects in the heap are dumped.
format=b binary format
file=<file> dump heap to <file>
Example: jmap -dump:live,format=b,file=heap.bin <pid>
-F force. Use with -dump:<dump-options> <pid> or -histo
to force a heap dump or histogram when <pid> does not
respond. The "live" suboption is not supported
in this mode.
-h | -help to print this help message
-J<flag> to pass <flag> directly to the runtime system
1.2 参数
option:选项参数,不可同时使用多个选项参数。
pid:Java进程id。
executable:产生核心dump的Java可执行文件。
core:需要打印配置信息的核心文件。
remote-hostname-or-ip:远程调试的主机名或ip。
server-id:可选的唯一id,如果相同的远程主机上运行了多台调试服务器,用此选项参数标示服务器。
1.3 options参数
heap:显示Java堆详细信息;
histo:线下堆中对象的统计信息;
clstats:Java堆中内存的类加载器的统计信息;
finalizerinfo:显示在F-Queue队列等待Finlizer线程执行finalizer方法的对象;
dump:生成堆转储快照;
F:当-dump没有响应时,强制生成dump快照;
2.用法
2.1 jmap -dump:format=b,file=dump.hprof 129665
dump堆到文件,format指定输出格式,live指明是活着的对象,file指定文件名。
> jmap -dump:format=b,file=dump.hprof 129665
Dumping heap to /opt/huawei/inputMethod/flight/flight/dump.hprof ...
Heap dump file created
dump.hprof这个文件可以通过eclipse的打开
2.2 jmap -heap 129665
打印heap的概要信息,GC使用的算法,heap的配置和使用情况,可以用此来判断内存目前的使用情况以及垃圾回收情况。
2.3 jmap -finalizerinfo 129665
打印等待回收的对象信息。
> jmap -finalizerinfo 129665
Attaching to process ID 129665, please wait...
Debugger attached successfully.
Server compiler detected.
JVM version is 25.121-b13
Number of objects pending for finalization: 0
Number of objects pending for finalization:0 说明当前F-Queue队列中并没有等待Finalizer线程执行finalizer方法的对象。
2.4 jmap -histo:live 129665
打印堆的对象统计,包括对象数、内存大小等。jmap -histo:live这个命令执行,JVM会先触发gc,然后再统计信息。
第一列:编号id
第二列:实例个数
第三列:所有实例大小
第四列:类名
> jmap -histo:live 129665 | grep com.netflix
658: 1 40 com.netflix.hystrix.strategy.HystrixPlugins
790: 1 24 com.netflix.hystrix.strategy.properties.HystrixDynamicPropertiesSystemProperties$4
934: 1 16 com.netflix.hystrix.strategy.properties.HystrixDynamicPropertiesSystemProperties
2.5 jmap -clstats 129665
打印Java类加载器的智能统计信息,对于每个类加载器而言,对于每个类加载器而言,它的名称,活跃度,地址,父类加载器,它所加载的类的数量和大小都会被打印。此外,包含的字符串数量和大小也会被打印。
2.6 -F
强制模式。如果指定的pid没有响应,请使用jmap -dump或jmap -histo选项。此模式下,不支持live子选项。