• 接口响应慢该如何排查


    不知道大家有没有遇到这种情况,接口业务逻辑写完后,用 postman 一调,发现接口响应时间好长,不得不对接口进行优化。但是此时接口的代码往往逻辑比较复杂,调用层次也比较多,很难定位到耗时较长的代码块。

    遇到这种情况大家都是如何定位耗时代码块的呢?

    我看到很多人都是直接用System.currentTimeMillis()对代码进行埋点:

    1. public static void main(String[] args) {
    2. Long startTime = System.currentTimeMillis();
    3. exec();
    4. Long endTime = System.currentTimeMillis();
    5. log.info("exec 方法执行耗时:{}ms", endTime - startTime);
    6. }

    或者用StopWatch打印方法耗时:

    1. public static void main(String[] args) throws InterruptedException {
    2. StopWatch stopWatch = new StopWatch();
    3. stopWatch.start("exec");
    4. exec();
    5. stopWatch.stop();
    6. System.out.println(stopWatch.prettyPrint());
    7. }

    这两种方法本质上是一样的,都是通过手动在代码块上进行埋点,打印出方法的耗时,该方法不仅费时费力,而且对代码有侵入,修复问题后删掉代码还是一个麻烦事。

    下面介绍如果通过Arthas定位耗时代码块。

    Arthas 简介

    Arthas是阿里开源的一款 Java 诊断工具,可以在无需重启 JVM 的情况下,实时查看应用 load、内存、gc、线程等状态信息,还能实时查看方法调用入参、出参、方法调用耗时等。

    Arthas 快速开始

    直接下载Arthasjar 包,然后用java -jar命令启动即可:

    1. $ curl -O https://arthas.aliyun.com/arthas-boot.jar
    2. $ java -jar arthas-boot.jar

    Arthas启动的时候,会打印出当前运行的 java 进程:

    1. $ java -jar arthas-boot.jar
    2. [INFO] JAVA_HOME: /Library/Java/JavaVirtualMachines/jdk1.8.0_351.jdk/Contents/Home/jre
    3. [INFO] arthas-boot version: 3.6.9
    4. [INFO] Found existing java process, please choose one and input the serial number of the process, eg : 1. Then hit ENTER.
    5. * [1]: 12512 com.huangxy.springstudy.SpringStudyApplication
    6. [2]: 12511 org.jetbrains.jps.cmdline.Launcher

    然后可以选择我们需要 attach 的 java 进程,这里我们选择 1,然后按回车。Arthas 会 attach 到目标进程上,并输出日志:

    1. [INFO] arthas home: /Users/huangxiaoyu/.arthas/lib/3.6.9/arthas
    2. [INFO] Try to attach process 12512
    3. [INFO] Attach process 12512 success.
    4. [INFO] arthas-client connect 127.0.0.1 3658
    5. ,---. ,------. ,--------.,--. ,--. ,---. ,---.
    6. / O \ | .--. ''--. .--'| '--' | / O \ ' .-'
    7. | .-. || '--'.' | | | .--. || .-. |`. `-.
    8. | | | || |\ \ | | | | | || | | |.-' |
    9. `--' `--'`--' '--' `--' `--' `--'`--' `--'`-----'
    10. wiki https://arthas.aliyun.com/doc
    11. tutorials https://arthas.aliyun.com/doc/arthas-tutorials.html
    12. version 3.6.9
    13. main_class com.huangxy.springstudy.SpringStudyApplication
    14. pid 12512
    15. time 2023-07-25 09:14:22

    到这里,Arthas 已经 attach 到我们的目标进程上了,我们尝试使用dashboad命令,查看进程的信息:

    1. $ dashboard
    2. ID NAME GROUP PRIORITY STATE %CPU DELTA_TIME TIME INTERRUPT DAEMON
    3. 36 DestroyJavaVM main 5 RUNNABLE 0.0 0.000 0:1.748 false false
    4. -1 C1 CompilerThread3 - -1 - 0.0 0.000 0:0.761 false true
    5. -1 VM Periodic Task Thread - -1 - 0.0 0.000 0:0.237 false true
    6. 24 http-nio-8081-exec-1 main 5 WAITING 0.0 0.000 0:0.098 false true
    7. -1 VM Thread - -1 - 0.0 0.000 0:0.071 false true
    8. 25 http-nio-8081-exec-2 main 5 WAITING 0.0 0.000 0:0.055 false true
    9. 54 arthas-NettyHttpTelnetBootstra system 5 RUNNABLE 0.0 0.000 0:0.054 false true
    10. -1 GC task thread#8 (ParallelGC) - -1 - 0.0 0.000 0:0.043 false true
    11. -1 GC task thread#1 (ParallelGC) - -1 - 0.0 0.000 0:0.043 false true
    12. -1 GC task thread#7 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    13. -1 GC task thread#6 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    14. -1 GC task thread#0 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    15. -1 GC task thread#9 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    16. -1 GC task thread#2 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    17. -1 GC task thread#3 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    18. -1 GC task thread#5 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    19. -1 GC task thread#4 (ParallelGC) - -1 - 0.0 0.000 0:0.042 false true
    20. Memory used total max usage GC
    21. heap 83M 432M 7282M 1.14% gc.ps_scavenge.count 4
    22. ps_eden_space 72M 212M 2688M 2.69% gc.ps_scavenge.time(ms) 24
    23. ps_survivor_space 0K 21504K 21504K 0.00% gc.ps_marksweep.count 2
    24. ps_old_gen 10M 199M 5461M 0.20% gc.ps_marksweep.time(ms) 61
    25. nonheap 53M 56M -1 94.71%
    26. code_cache 6M 7M 240M 2.87%
    27. metaspace 40M 43M -1 94.45%
    28. compressed_class_space 5M 5M 1024M 0.53%
    29. direct 16K 16K - 100.01%
    30. mapped 0K 0K - 0.00%
    31. Runtime
    32. os.name Mac OS X
    33. os.version 13.0.1
    34. java.version 1.8.0_351
    35. java.home /Library/Java/JavaVirtualMachines/jdk1.8.0_351.jdk/Contents/
    36. Home/jre
    37. systemload.average 3.80
    38. processors 12

    可以看到dashboad命令会展示一个实时的数据面板,列出了我们平时比较关心的数据指标,如内存使用量,gc 状态等。

    使用 Trace 命令统计方法耗时

    trace命令能主动搜索class-pattern/method-pattern对应的方法调用路径,渲染和统计整个调用链路上的所有性能开销和追踪调用链路。

    比如下面接口:

    1. @RestController
    2. public class HelloController {
    3. @GetMapping("/test")
    4. public String test() throws InterruptedException {
    5. one();
    6. two();
    7. return "hello";
    8. }
    9. private void two() throws InterruptedException {
    10. Thread.sleep(20);
    11. three();
    12. }
    13. private void three() throws InterruptedException {
    14. Thread.sleep(1000);
    15. }
    16. private void one() throws InterruptedException {
    17. Thread.sleep(100);
    18. }
    19. }

    启动Arthas进程,并 attach 到我们的 springboot 项目上,接着使用trace命令跟踪方法的调用情况:

    $ trace com.huangxy.springstudy.controller.HelloController test

    trace方法第一个参数是要 attach 的类的路径,第二个参数是方法名称,接着我们调用一遍接口,就能看到 hello 方法的调用堆栈及其耗时

    可以看到,这里耗时比较严重的是tow()方法,花了 1029ms,占了 90.73% 的比重。

    不过需要注意的是,trace 命令只会 trace 匹配到的函数里的子调用,并不会向下 trace 多层,如果需要 trace 多层,可以用正则匹配多个函数,如:

    $ trace -E com.huangxy.springstudy.controller.HelloController test|two

    这下更清晰的定位到,导致耗时过长的方法是three()方法,定位到方法后,针对性的优化耗时代码块即可。

    最后,推荐一款应用开发神器

    关于目前低代码在技术领域很活跃!

    低代码是什么?一组数字技术工具平台,能基于图形化拖拽、参数化配置等更为高效的方式,实现快速构建、数据编排、连接生态、中台服务等。通过少量代码或不用代码实现数字化转型中的场景应用创新。它能缓解甚至解决庞大的市场需求与传统的开发生产力引发的供需关系矛盾问题,是数字化转型过程中降本增效趋势下的产物。

    这边介绍一款好用的低代码平台——JNPF快速开发平台。近年在市场表现和产品竞争力方面表现较为突出,采的是最新主流前后分离框架(SpringBoot+Mybatis-plus+Ant-Design+Vue3。代码生成器依赖性低,灵活的扩展能力,可灵活实现二次开发。

    以JNPF为代表的企业级低代码平台为了支撑更高技术要求的应用开发,从数据库建模、Web API构建到页面设计,与传统软件开发几乎没有差异,只是通过低代码可视化模式,减少了构建“增删改查”功能的重复劳动,还没有了解过低代码的伙伴可以尝试了解一下。

    应用:https://www.jnpfsoft.com/?csdn

    有了它,开发人员在开发过程中就可以轻松上手,充分利用传统开发模式下积累的经验。所以低代码平台对于程序员来说,有着很大帮助。

  • 相关阅读:
    【数据结构】什么是算法
    蓄电池与超级电容混合储能并网逆变系统Simulink仿真
    shardingsphere分库分表示例(逻辑表,真实表,绑定表,广播表,单表)
    字符串拼接re.sub()用法
    【开发心得】ftp下载文件,文件不存在的原因解析
    Linux安装Apache(解压版)
    “蔚来杯“2022牛客暑期多校训练营(加赛) E题: Everyone is bot
    数据库安全性
    在Jupyter Lab中使用多个环境,及魔法命令简介
    nginx四层tcp负载均衡及主备、四层udp负载均衡及主备、7层http负载均衡及主备配置(wndows系统主备、负载均衡)
  • 原文地址:https://blog.csdn.net/wangonik_l/article/details/133948239