jmap -dump:format=b,file=/data/logs/heap.hprof 12668
jstat -gcutil pid 1000 #1是进程号
jmap -F -dump:format=b,file=heapDump pid #1是进程号
jmap -heap 837
执行jmap -histo:live pid命令 //这个会立即触发fullgc
本文共 234 字,大约阅读时间需要 1 分钟。
jmap -dump:format=b,file=/data/logs/heap.hprof 12668
jstat -gcutil pid 1000 #1是进程号
jmap -F -dump:format=b,file=heapDump pid #1是进程号
jmap -heap 837
执行jmap -histo:live pid命令 //这个会立即触发fullgc
转载于:https://www.cnblogs.com/jpit/p/8985541.html