1. 程式人生 > >JVM調優命令-jmap

JVM調優命令-jmap

syntax tro mar only specified max 類加載 nbsp sin

jmap JVM Memory Map命令用於生成heap dump文件,如果不使用這個命令,還可以使用-XX:+HeapDumpOnOutOfMemoryError參數來讓虛擬機出現OOM的時候自動生成dump文件。 jmap不僅能生成dump文件,還可以查詢finalize執行隊列、Java堆和永久代的詳細信息,如當前使用率、當前使用的是哪種收集器等。【內存分析】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [root@localhost jdk1.7.0_79]
# jmap --help 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 -permstat to print permanent generation 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 3 jmap [ option ] pid jmap [ option ] executable core jmap [ option ] [server-id@]remote-hostname-or-IP

參數

option:選項參數,不可同時使用多個選項參數

pid:java進程id,命令ps -ef | grep java獲取

executable:產生核心dump的java可執行文件

core:需要打印配置信息的核心文件

remote-hostname-or-ip:遠程調試的主機名或ip

server-id:可選的唯一id,如果相同的遠程主機上運行了多臺調試服務器,用此選項參數標識服務器

options參數

heap : 顯示Java堆詳細信息 histo : 顯示堆中對象的統計信息 permstat :Java堆內存的永久保存區域的類加載器的統計信息 finalizerinfo : 顯示在F-Queue隊列等待Finalizer線程執行finalizer方法的對象
dump : 生成堆轉儲快照
F : 當-dump沒有響應時,強制生成dump快照

示例

-dump

dump堆到文件,format指定輸出格式,live指明是活著的對象,file指定文件名

1 2 3 [root@localhost jdk1.7.0_79]# jmap -dump:live,format=b,file=dump.hprof 24971 Dumping heap to /usr/local/java/jdk1.7.0_79/dump.hprof ... Heap dump file created

-heap

打印heap的概要信息,GC使用的算法,heap的配置及使用情況,可以用此來判斷內存目前的使用情況以及垃圾回收情況

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 [root@localhost jdk1.7.0_79]# jmap -heap 24971 Attaching to process ID 24971, please wait... Debugger attached successfully. Server compiler detected. JVM version is 24.79-b02 using thread-local object allocation. Parallel GC with 4 thread(s) Heap Configuration: MinHeapFreeRatio = 0 MaxHeapFreeRatio = 100 MaxHeapSize = 4146069504 (3954.0MB) NewSize = 1310720 (1.25MB) MaxNewSize = 17592186044415 MB OldSize = 5439488 (5.1875MB) NewRatio = 2 SurvivorRatio = 8 PermSize = 21757952 (20.75MB) MaxPermSize = 85983232 (82.0MB) G1HeapRegionSize = 0 (0.0MB) Heap Usage: PS Young Generation Eden Space: capacity = 517996544 (494.0MB) used = 151567520 (144.54605102539062MB) free = 366429024 (349.4539489746094MB) 29.26033421566612% used From Space: capacity = 41943040 (40.0MB) used = 0 (0.0MB) free = 41943040 (40.0MB) 0.0% used To Space: capacity = 40370176 (38.5MB) used = 0 (0.0MB) free = 40370176 (38.5MB) 0.0% used PS Old Generation capacity = 115343360 (110.0MB) used = 32927184 (31.401809692382812MB) free = 82416176 (78.59819030761719MB) 28.54709972034801% used PS Perm Generation capacity = 85983232 (82.0MB) used = 54701200 (52.16712951660156MB) free = 31282032 (29.832870483398438MB) 63.6184506300019% used 20822 interned Strings occupying 2441752 bytes.

-finalizerinfo

打印等待回收的對象信息,

1 2 3 4 5 6 [root@localhost jdk1.7.0_79]# jmap -finalizerinfo 24971 Attaching to process ID 24971, please wait... Debugger attached successfully. Server compiler detected. JVM version is 24.79-b02 Number of objects pending for finalization: 0

Number of objects pending for finalization: 0 說明當前F-QUEUE隊列中並沒有等待Fializer線程執行final

izer方法的對象。

-histo

打印堆的對象統計,包括對象數、內存大小等等。jmap -histo:live 這個命令執行,JVM會先觸發gc,然後再統計信息

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [root@localhost jdk1.7.0_79]# jmap -histo:live 24971 | more num #instances #bytes class name ---------------------------------------------- 1: 100134 14622728 <constMethodKlass> 2: 100134 12830128 <methodKlass> 3: 88438 12708392 [C 4: 8271 10163584 <constantPoolKlass> 5: 27806 9115784 [B 6: 8271 6225312 <instanceKlassKlass> 7: 6830 5632192 <constantPoolCacheKlass> 8: 86717 2081208 java.lang.String 9: 2264 1311720 <methodDataKlass> 10: 10880 870400 java.lang.reflect.Method 11: 8987 869888 java.lang.Class 12: 13330 747264 [[I 13: 11808 733872 [S 14: 20110 643520 java.util.concurrent.ConcurrentHashMap$HashEntry 15: 18574 594368 java.util.HashMap$Entry 16: 3668 504592 [Ljava.util.HashMap$Entry; 17: 30698 491168 java.lang.Integer 18: 2247 486864 [I 19: 7486 479104 java.net.URL 20: 8032 453616 [Ljava.lang.Object; 21: 10259 410360 java.util.LinkedHashMap$Entry 22: 699 380256 <objArrayKlassKlass> 23: 5782 277536 org.apache.catalina.loader.ResourceEntry 24: 8327 266464 java.lang.ref.WeakReference 25: 2374 207928 [Ljava.util.concurrent.ConcurrentHashMap$HashEntry; 26: 3440 192640 java.util.LinkedHashMap 27: 4779 191160 java.lang.ref.SoftReference 28: 3576 171648 java.util.HashMap 29: 10080 161280 java.lang.Object

jmap -histo:live 24971 | grep com.yuhuo 查詢類名包含com.yuhuo的信息

jmap -histo:live 24971 | grep com.yuhuo > histo.txt 保存信息到histo.txt文件

附 - jmap輸出中class name非自定義類的說明:

BaseType CharacterTypeInterpretation
B byte signed byte
C char Unicode character
D double double-precision floating-point value
F float single-precision floating-point value
I int integer
J long long integer
L; reference an instance of class
S short signed short
Z boolean true or false
[ reference one array dimension,[I表示int[]

-permstat

打印Java堆內存的永久區的類加載器的智能統計信息。對於每個類加載器而言,它的名稱、活躍度、地址、父類加載器、它所加載的類的數量和大小都會被打印。此外,包含的字符串數量和大小也會被打印。

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [root@localhost jdk1.7.0_79]# jmap -permstat 24971 Attaching to process ID 24971, please wait... Debugger attached successfully. Server compiler detected. JVM version is 24.79-b02 finding class loader instances ..done. computing per loader stat ..done. please wait.. computing liveness....................................................liveness analysis may be inaccurate ... class_loader classes bytes parent_loader alive? type <bootstrap> 3034 18149440 null live <internal> 0x000000070a88fbb8 1 3048 null dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070a914860 1 3064 0x0000000709035198 dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070a9fc320 1 3056 0x0000000709035198 dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070adcb4c8 1 3064 0x0000000709035198 dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070a913760 1 1888 0x0000000709035198 dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x0000000709f3fd40 1 3032 null dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070923ba78 1 3088 0x0000000709035260 dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070a88fff8 1 3048 null dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58 0x000000070adcbc58 1 1888 0x0000000709035198 dead sun/reflect/DelegatingClassLoader@0x0000000703c50b58

-F

強制模式。如果指定的pid沒有響應,請使用jmap -dump或jmap -histo選項。此模式下,不支持live子選項。

JVM調優命令-jmap