天天看点

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

前言

现实企业级Java应用开发、维护中,有时候我们会碰到下面这些问题:

  • OutOfMemoryError,内存不足
  • 内存溢出
  • 线程死锁
  • 锁争用(Lock Contention)
  • Java进程消耗CPU或者Memory过高
  • ......

这些问题在日常的运维维护中可能被很多人忽视(大部分人遇到上面的问题只是重启服务器或者调大内存,而不是深究问题根源),但是能够理解并解决这些问题是Java应用运维进阶的必备要求

这里介绍一下常见的jvm性能调优监控工具进行介绍,希望能起到抛砖引玉之用。

1、jps主要用来输出jvm中的运行的进程状态信息。

jps是jdk提供的一个查看当前java进程的小工具,可以看做是JavaVirtual Machine Process Status Tool的缩写。非常简单实用。

命令格式:jps [options ] [ hostid ]

 [options]选项 :

-q:仅输出VM标识符,不包括classname,jar name,arguments in main method 

-m:输出main method的参数 

-l:输出完全的包名,应用主类名,jar的完全路径名 

-v:输出jvm参数 

-V:输出通过flag文件传递到JVM中的参数(.hotspotrc文件或-XX:Flags=所指定的文件 

-Joption:传递参数到vm,例如:-J-Xms512m

基本使用:

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解
[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解
[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

2、jstack主要用来查看某个Java进程内的线程堆栈信息

命令格式:

Usage:

    jstack [-l] <pid>

        (to connect to running process)

    jstack -F [-m] [-l] <pid>

        (to connect to a hung process)

    jstack [-m] [-l] <executable> <core>

        (to connect to a core file)

    jstack [-m] [-l] [[email protected]]<remote server IP or hostname>

        (to connect to a remote debug server)

Options:

    -F  to force a thread dump. Use when jstack <pid> does not respond (process is hung)

    -m  to print both java and native frames (mixed mode)

    -l  long listing. 会打印出额外的锁信息,在发生死锁时可以用jstack -l pid来观察锁持有情况-m mixed mode,不仅会输出Java堆栈信息,还会输出C/C++堆栈信息(比如Native方法)

    -h or -help to print this help message

jstack可以定位到线程堆栈,根据堆栈信息我们可以定位到具体代码,所以它在JVM性能调优中使用得非常多。

实战:

例:找出某个Java进程中最耗费CPU的Java线程并定位堆栈信息,用到的命令有ps、top、printf、jstack、grep

首先,找到进程的PID

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

 其次,找出该进程内最耗费CPU的线程,可以使用ps -Lfp pid或者ps -mp pid -o THREAD, tid, time或者top -Hp pid

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

 TIME列就是各个Java线程耗费的CPU时间,CPU时间最长的是线程ID为12657的线程,用得到12657的十六进制值为3171,下面会用到。

然后,终于轮到jstack上场了,它用来输出进程21711的堆栈信息,然后根据线程ID的十六进制值grep

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

 可以看到CPU消耗在http-nio-8002-exec-657这个类的condition。

后续可以正对这跟类的代码进行分析

3、jmap导出堆内存,然后使用jhat来进行分析

命令格式:

Usage:

    jmap [option] <pid>

        (to connect to running process)

    jmap [option] <executable <core>

        (to connect to a core file)

    jmap [option] [[email protected]]<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

如果运行在64位JVM上,可能需要指定-J-d64命令选项参数

实战:

例:使用jmap -heap pid查看进程堆内存使用情况,包括使用的GC算法、堆配置参数和各代中堆内存使用情况

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

使用jmap -histo[:live] pid查看堆内存中的对象数目、大小统计直方图,如果带上live则只统计活对象

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

class name是对象类型,说明如下:

B  byte
C  char
D  double
F  float
I  int
J  long
Z  boolean
[  数组,如[I表示int[]
[L+类名 其他对象
           

还有一个很常用的情况是:用jmap把进程内存使用情况dump到文件中,再用jhat分析查看

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

 dump出来的文件可以用MAT、VisualVM等工具查看

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

注意如果Dump文件太大,可能需要加上-J-Xmx512m这种参数指定最大堆内存,即jhat -J-Xmx512m -port 9998 /tmp/dump.dat。然后就可以在浏览器中输入主机地址:9998查看。

4、jstat看看各个区内存和GC的情况 

 命令格式:

Usage: jstat -help|-options

       jstat -<option> [-t] [-h<lines>] <vmid> [<interval> [<count>]]

Definitions:

  <option>      An option reported by the -options option

  <vmid>        Virtual Machine Identifier. A vmid takes the following form:

                     <lvmid>[@<hostname>[:<port>]]

                Where <lvmid> is the local vm identifier for the target

                Java virtual machine, typically a process id; <hostname> is

                the name of the host running the target Java virtual machine;

                and <port> is the port number for the rmiregistry on the

                target host. See the jvmstat documentation for a more complete

                description of the Virtual Machine Identifier.

  <lines>       Number of samples between header lines.

  <interval>    Sampling interval. The following forms are allowed:

                    <n>["ms"|"s"]

                Where <n> is an integer and the suffix specifies the units as 

                milliseconds("ms") or seconds("s"). The default units are "ms".

  <count>       Number of samples to take before terminating.

  -J<flag>      Pass <flag> directly to the runtime system.

vmid是Java虚拟机ID,在Linux/Unix系统上一般就是进程ID。interval是采样时间间隔。count是采样数目。比如下面输出的是GC信息,采样时间间隔为250ms,采样数为4

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

要明白上面各列的意义,先看JVM堆内存布局:

[JAVA]JVM 性能调优监控工具jps、jstack、jmap、jhat、jstat、hprof 使用详解

可以看出:

堆内存 = 年轻代 + 年老代 + 永久代
年轻代 = Eden区 + 两个Survivor区(From和To)
           

现在来解释各列含义:

S0C、S1C、S0U、S1U:Survivor 0/1区容量(Capacity)和使用量(Used)
EC、EU:Eden区容量和使用量
OC、OU:年老代容量和使用量
PC、PU:永久代容量和使用量
YGC、YGT:年轻代GC次数和GC耗时
FGC、FGCT:Full GC次数和Full GC耗时
GCT:GC总耗时
           

 5、hprof能够展现CPU使用率,统计堆内存使用情况

命令格式:

java -agentlib:hprof[=options] ToBeProfiledClass

java -Xrunprof[:options] ToBeProfiledClass

javac -J-agentlib:hprof[=options] ToBeProfiledClass

实战:

例1:CPU Usage Sampling Profiling(cpu=samples)

例2:Heap Allocation Profiling(heap=sites)

例3:Heap Dump(heap=dump)

虽然在JVM启动参数中加入-Xrunprof:heap=sites参数可以生成CPU/Heap Profile文件,但对JVM性能影响非常大,不建议在线上服务器环境使用

结束