type
status
date
slug
summary
tags
category
icon
password
- 找出哪个进程cpu占用高(top命令)
- 该进程中的哪个线程cpu占用高(
top -Hp $pid
命令)
- 将十进制的tid转化为十六进制(
printf %x $tid
命令)
- 导出该线程的堆栈 (
jstack $pid >$pid.log
命令)
- 查找哪个方法(栈帧)消耗时间 (
less $pid.log
)
- 可以确认工作线程占比高还是垃圾回收线程占比高
- 修改代码
- Author:NotionNext
- URL:https://tangly1024.com/article/96387faa-df83-499c-9ba8-6f5b90bd5f72
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!