Java性能调优作为大型分布式系统提供高性能服务的必修课,其重要性不言而喻。

好的分析工具能起到事半功倍的效果,利用分析利器JMC、JFR,可以实现性能问题的准确定位。

本文主要阐述如何利用JFR生成性能日志

JMC:Java Mission Control

JFR:Java Flight Recorder

1. 打开JFR

JVM_OPT中添加:-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl"

2. 启动JFR

登陆服务器,找到应用PID,执行命令:jcmd $PID JFR.start name=abc,duration=120s

3. Dump JFR

等待至少duration(本文设定120s)后,执行命令:jcmd $PID JFR.dump name=abc,duration=120s filename=abc.jfr(注意,文件名必须为.jfr后缀)

4. 检查JFR状态

执行命令:jcmd $PID JFR.check name=abc,duration=120s

5. 停止JFR

执行命令:jcmd $PID JFR.stop name=abc,duration=120s

6. JMC分析

切回开发机器,下载步骤3中生成的abc.jfr,打开jmc,导入abc.jfr即可进行可视化分析

==================================================================================

另一种配置方法, 已经成功:

java 参数  -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:NativeMemoryTracking=summary -XX:FlightRecorderOptions=defaultrecording=true

sudo -utomcat jcmd 8588 JFR.start settings=/tmp/my-profiling.jfc duration=6m filename=/tmp/hsperfdata_tomcat/new2.jfr

my-profiling.jfc 这个是模板文件, 内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration version="1.0" name="my-profiling" description="Low overhead configuration for profiling, typically around 2 % overhead." provider="Oracle">

<producer uri="http://www.oracle.com/hotspot/jvm/" label="Oracle JDK">

<control>

<selection name="gc-level" default="detailed" label="Garbage Collector">
        <option label="Off" name="off">off</option>
        <option label="Normal" name="detailed">normal</option>
        <option label="All" name="all">all</option>
      </selection>

<condition name="gc-enabled-normal" true="true" false="false">
        <or>
          <test name="gc-level" operator="equal" value="normal"/>
          <test name="gc-level" operator="equal" value="all"/>
        </or>
      </condition>

<condition name="gc-enabled-all" true="true" false="false">
        <test name="gc-level" operator="equal" value="all"/>
      </condition>

<selection name="compiler-level" default="detailed" label="Compiler">
        <option label="Off" name="off">off</option>
        <option label="Normal" name="normal">normal</option>
        <option label="Detailed" name="detailed">detailed</option>
        <option label="All" name="all">all</option>
      </selection>

<condition name="compiler-enabled" true="false" false="true">
        <test name="compiler-level" operator="equal" value="off"/>
      </condition>

<condition name="compiler-enabled-failure" true="true" false="false">
        <or>
          <test name="compiler-level" operator="equal" value="detailed"/>
          <test name="compiler-level" operator="equal" value="all"/>
        </or>
      </condition>

<condition name="compiler-sweeper-threshold" true="0 ms" false="100 ms">
        <test name="compiler-level" operator="equal" value="all"/>
      </condition>

<condition name="compiler-compilation-threshold" true="1000 ms">
        <test name="compiler-level" operator="equal" value="normal"/>
      </condition>

<condition name="compiler-compilation-threshold" true="100 ms">
        <test name="compiler-level" operator="equal" value="detailed"/>
      </condition>

<condition name="compiler-compilation-threshold" true="0 ms">
        <test name="compiler-level" operator="equal" value="all"/>
      </condition>

<condition name="compiler-phase-threshold" true="60 s">
        <test name="compiler-level" operator="equal" value="normal"/>
      </condition>

<condition name="compiler-phase-threshold" true="10 s">
        <test name="compiler-level" operator="equal" value="detailed"/>
      </condition>

<condition name="compiler-phase-threshold" true="0 s">
        <test name="compiler-level" operator="equal" value="all"/>
      </condition>

<selection name="method-sampling-interval" default="maximum" label="Method Sampling">
        <option label="Off" name="off">999 d</option>
        <option label="Normal" name="normal">20 ms</option>
        <option label="Maximum" name="maximum">10 ms</option>
      </selection>

<condition name="method-sampling-enabled" true="false" false="true">
        <test name="method-sampling-interval" operator="equal" value="999 d"/>
      </condition>

<selection name="thread-dump-interval" default="everyMinute" label="Thread Dump">
        <option label="Off" name="off">999 d</option>
        <option label="At least Once" name="normal">everyChunk</option>
        <option label="Every 60 s" name="everyMinute">60 s</option>
        <option label="Every 10 s" name="everyTenSecond">10 s</option>
        <option label="Every 1 s" name="everySecond">1 s</option>
      </selection>

<condition name="thread-dump-enabled" true="false" false="true">
        <test name="thread-dump-interval" operator="equal" value="999 d"/>
      </condition>

<selection name="exception-level" default="errors" label="Exceptions">
        <option label="Off" name="off">off</option>
        <option label="Errors Only" name="errors">errors</option>
        <option label="All Exceptions, including Errors" name="all">all</option>
      </selection>

<condition name="enable-errors" true="true" false="false">
        <or>
          <test name="exception-level" operator="equal" value="errors"/>
          <test name="exception-level" operator="equal" value="all"/>
        </or>
      </condition>

<condition name="enable-exceptions" true="true" false="false">
        <test name="exception-level" operator="equal" value="all"/>
      </condition>

<text name="synchronization-threshold" label="Synchronization Threshold" contentType="timespan" minimum="0 s">10 ms</text>

<text name="file-io-threshold" label="File I/O Threshold" contentType="timespan" minimum="0 s">10 ms</text>

<text name="socket-io-threshold" label="Socket I/O Threshold" contentType="timespan" minimum="0 s">10 ms</text>

<flag name="heap-statistics-enabled" label="Heap Statistics">false</flag>

<flag name="class-loading-enabled" label="Class Loading">true</flag>

<flag name="allocation-profiling-enabled" label="Allocation Profiling">true</flag>

</control>

<event path="java/statistics/thread_allocation">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="java/statistics/class_loading">
      <setting name="enabled">true</setting>
      <setting name="period">1000 ms</setting>
    </event>

<event path="java/statistics/threads">
      <setting name="enabled">true</setting>
      <setting name="period">1000 ms</setting>
    </event>

<event path="java/thread_start">
      <setting name="enabled">true</setting>
    </event>

<event path="java/thread_end">
      <setting name="enabled">true</setting>
    </event>

<event path="java/thread_sleep">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="synchronization-threshold">10 ms</setting>
    </event>

<event path="java/thread_park">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="synchronization-threshold">10 ms</setting>
    </event>

<event path="java/monitor_enter">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="synchronization-threshold">10 ms</setting>
    </event>

<event path="java/monitor_wait">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="synchronization-threshold">10 ms</setting>
    </event>

<event path="vm/class/load">
      <setting name="enabled" control="class-loading-enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/class/unload">
      <setting name="enabled" control="class-loading-enabled">true</setting>
    </event>

<event path="vm/info">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/initial_system_property">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/prof/execution_sample">
      <setting name="enabled" control="method-sampling-enabled">true</setting>
      <setting name="period" control="method-sampling-interval">10 ms</setting>
    </event>

<event path="vm/prof/execution_sampling_info">
      <setting name="enabled">false</setting>
      <setting name="threshold">1 ms</setting>
    </event>

<event path="vm/runtime/execute_vm_operation">
      <setting name="enabled">true</setting>
      <setting name="threshold">10 ms</setting>
    </event>

<event path="vm/runtime/thread_dump">
      <setting name="enabled" control="thread-dump-enabled">true</setting>
      <setting name="period" control="thread-dump-interval">60 s</setting>
    </event>

<event path="vm/flag/long">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/flag/ulong">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/flag/double">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/flag/boolean">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/flag/string">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/flag/long_changed">
      <setting name="enabled">true</setting>
    </event>

<event path="vm/flag/ulong_changed">
      <setting name="enabled">true</setting>
    </event>

<event path="vm/flag/double_changed">
      <setting name="enabled">true</setting>
    </event>

<event path="vm/flag/boolean_changed">
      <setting name="enabled">true</setting>
    </event>

<event path="vm/flag/string_changed">
      <setting name="enabled">true</setting>
    </event>

<event path="vm/gc/detailed/object_count">
      <setting name="enabled" control="heap-statistics-enabled">false</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/gc/configuration/gc">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/gc/configuration/heap">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/gc/configuration/young_generation">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/gc/configuration/tlab">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/gc/configuration/survivor">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/gc/detailed/object_count_after_gc">
      <setting name="enabled">false</setting>
    </event>

<event path="vm/gc/heap/summary">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/heap/ps_summary">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/heap/metaspace_summary">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/metaspace/gc_threshold">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/metaspace/allocation_failure">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="stackTrace">true</setting>
    </event>

<event path="vm/gc/metaspace/out_of_memory">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="stackTrace">true</setting>
    </event>

<event path="vm/gc/metaspace/chunk_free_list_summary">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/collector/garbage_collection">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/collector/parold_garbage_collection">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/collector/young_garbage_collection">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/collector/old_garbage_collection">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/collector/g1_garbage_collection">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/phases/pause">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/phases/pause_level_1">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/phases/pause_level_2">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/phases/pause_level_3">
      <setting name="enabled" control="gc-enabled-all">false</setting>
      <setting name="threshold">0 ms</setting>
    </event>

<event path="vm/gc/reference/statistics">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/detailed/promotion_failed">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/detailed/evacuation_failed">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/detailed/evacuation_info">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/detailed/concurrent_mode_failure">
      <setting name="enabled" control="gc-enabled-normal">true</setting>
    </event>

<event path="vm/gc/detailed/allocation_requiring_gc">
      <setting name="enabled" control="gc-enabled-all">false</setting>
      <setting name="stackTrace">true</setting>
    </event>

<event path="vm/compiler/config">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/compiler/stats">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">1000 ms</setting>
    </event>

<event path="vm/compiler/compilation">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="threshold" control="compiler-compilation-threshold">100 ms</setting>
    </event>

<event path="vm/compiler/phase">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="threshold" control="compiler-phase-threshold">10 s</setting>
    </event>

<event path="vm/compiler/failure">
      <setting name="enabled" control="compiler-enabled-failure">true</setting>
    </event>

<event path="vm/code_sweeper/config">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/code_sweeper/stats">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/code_sweeper/sweep">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="threshold" control="compiler-sweeper-threshold">100 ms</setting>
    </event>

<event path="vm/code_cache/config">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/code_cache/stats">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="vm/code_cache/full">
      <setting name="enabled" control="compiler-enabled">true</setting>
    </event>

<event path="os/information">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="os/processor/cpu_information">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="os/processor/context_switch_rate">
      <setting name="enabled" control="compiler-enabled">true</setting>
      <setting name="period">10 s</setting>
    </event>

<event path="os/processor/cpu_load">
      <setting name="enabled">true</setting>
      <setting name="period">1000 ms</setting>
    </event>

<event path="os/processor/cpu_tsc">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="os/system_process">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="os/initial_environment_variable">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="os/memory/physical_memory">
      <setting name="enabled">true</setting>
      <setting name="period">everyChunk</setting>
    </event>

<event path="java/object_alloc_in_new_TLAB">
      <setting name="enabled" control="allocation-profiling-enabled">true</setting>
      <setting name="stackTrace">true</setting>
    </event>

<event path="java/object_alloc_outside_TLAB">
      <setting name="enabled" control="allocation-profiling-enabled">true</setting>
      <setting name="stackTrace">true</setting>
    </event>

</producer>

<producer uri="http://www.oracle.com/hotspot/jdk/" label="Oracle JDK">

<event path="java/file_read">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="http://www.oracle.com/hotspot/jvm/file-io-threshold">10 ms</setting>
    </event>

<event path="java/file_write">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="http://www.oracle.com/hotspot/jvm/file-io-threshold">10 ms</setting>
    </event>

<event path="java/socket_read">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="http://www.oracle.com/hotspot/jvm/socket-io-threshold">10 ms</setting>
    </event>

<event path="java/socket_write">
      <setting name="enabled">true</setting>
      <setting name="stackTrace">true</setting>
      <setting name="threshold" control="http://www.oracle.com/hotspot/jvm/socket-io-threshold">10 ms</setting>
    </event>

<event path="java/exception_throw">
      <setting name="enabled" control="http://www.oracle.com/hotspot/jvm/enable-exceptions">false</setting>
      <setting name="stackTrace">true</setting>
    </event>

<event path="java/error_throw">
      <setting name="enabled" control="http://www.oracle.com/hotspot/jvm/enable-errors">true</setting>
      <setting name="stackTrace">true</setting>
    </event>

<event path="java/statistics/throwables">
      <setting name="enabled">true</setting>
      <setting name="period">1000 ms</setting>
    </event>

</producer>

<producer uri="http://www.oracle.com/hotspot/jfr-info/" label="Oracle JDK">

<event path="recordings/recording">
      <setting name="enabled">true</setting>
    </event>

<event path="recordings/recording_setting">
      <setting name="enabled">true</setting>
    </event>

</producer>

</configuration>

Java性能调优:利用JFR生成性能日志的更多相关文章

  1. [Spark性能调优] 第一章:性能调优的本质、Spark资源使用原理和调优要点分析

    本課主題 大数据性能调优的本质 Spark 性能调优要点分析 Spark 资源使用原理流程 Spark 资源调优最佳实战 Spark 更高性能的算子 引言 我们谈大数据性能调优,到底在谈什么,它的本质 ...

  2. JVM性能调优2:JVM性能调优参数整理

    序号 参数名 说明 JDK 默认值 使用过 1 JVM执行模式 2 -client-server 设置该JVM运行与Client 或者Server Hotspot模式,这两种模式从本质上来说是在JVM ...

  3. JVM性能调优(4) —— 性能调优工具

    前序文章: JVM性能调优(1) -- JVM内存模型和类加载运行机制 JVM性能调优(2) -- 垃圾回收器和回收策略 JVM性能调优(3) -- 内存分配和垃圾回收调优 一.JDK工具 先来看看有 ...

  4. spark 性能调优(一) 性能调优的本质、spark资源使用原理、调优要点分析

    转载:http://www.cnblogs.com/jcchoiling/p/6440709.html 一.大数据性能调优的本质 编程的时候发现一个惊人的规律,软件是不存在的!所有编程高手级别的人无论 ...

  5. MySql(九):MySQL性能调优——Schema设计的性能优化

    一.高效的模型设计 先了解下数据库设计的三大范式 第一范式:要求有主键,并且要求每一个字段原子性不可再分 第二范式:要求所有非主键字段完全依赖主键,不能产生部分依赖 第三范式:所有非主键字段和主键字段 ...

  6. PHP性能调优---php-fpm中启用慢日志配置(用于检测执行较慢的PHP脚本)

    虽然通过nginx accesslog可以记录用户访问某个接口或者网页所消耗的时间,但是不能清晰地追踪到具体哪个位置或者说函数慢,所以通过php-fpm慢日志,slowlog设置可以让我们很好的看见哪 ...

  7. 【JAVA进阶架构师指南】之五:JVM性能调优

    前言   首先给大家说声对不起,最近属实太忙了,白天上班,晚上加班,回家还要收拾家里,基本每天做完所有事儿都是凌晨一两点了,没有精力再搞其他的了.   好了,进入正题,让我们来聊聊JVM篇最后一个章节 ...

  8. 成为Java GC专家(5)—Java性能调优原则

    并不是每个程序都需要调优.如果一个程序性能表现和预期一样,你不必付出额外的精力去提高它的性能.然而,在程序调试完成之后,很难马上就满足它的性能需求,于是就有了调优这项工作.无论哪种编程语言,对应用程序 ...

  9. JVM性能调优监控工具专题一:JVM自带性能调优工具(jps,jstack,jmap,jhat,jstat,hprof)

    性能分析工具jstatjmapjhatjstack 前提概要:         JDK本身提供了很多方便的JVM性能调优监控工具,除了集成式的VisualVM和jConsole外,还有jps.jsta ...

随机推荐

  1. Haskell语言学习笔记(43)Parsec(2)

    组合子 1 Prelude Text.Parsec Text.Parsec.String> parseTest (count 3 (char 'a')) "aaa" &quo ...

  2. localstorage是什么,它有哪些作用

    localStorage作为HTML5本地存储web storage特性的API之一,主要作用是将数据保存在客户端中,而客户端一般是指上海网站设计用户的计算机.在移动设备上,由于大部分浏览器都支持 w ...

  3. Maven常用命令及Eclipse应用

    一般来说,github上大多的java项目都是使用maven,ant等进行构建的.由于之前没有使用过maven,因此这几天对maven进行了简单的学习.古话说:“温故而知新”,一些命令长时间不使用都会 ...

  4. vmstat工具

    vmstat vmstat是Virtual Meomory Statistics(虚拟内存统计)的缩写, 是实时系统监控工具.该命令通过使用knlist子程序和/dev/kmen伪设备驱动器访问这些数 ...

  5. Cannot create inner bean '(inner bean)#67f903b5' of typ

    严重: Context initialization failedorg.springframework.beans.factory.BeanCreationException: Error crea ...

  6. MVC001之权限校验

    参考网址:http://bbs.csdn.net/topics/370002739 http://blog.csdn.net/chenloveyue/article/details/7095522 h ...

  7. maven向本地库添加jar包

    mvn install:install-file -DgroupId=com.lowagie -DartifactId=itextasian -Dversion=1.0 -Dpackaging=jar ...

  8. 57. Insert Interval (Array; Sort)

    Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessa ...

  9. python作业之用户管理程序

    数据库的格式化如下 分别为姓名|密码|电话号码|邮箱|用户类型 admin|admin123.|28812341026|admin@126.com|1root|admin123.|1344566348 ...

  10. oracle 将逗号分隔的字符串转成多行记录

    , rownum), length(, rownum, length(replace('a,b,c,d', ',', '')), length('a,b,c,d') from dual connect ...