java程序CPU消耗过高一般有两种情况:
1、
us过高,应用占用CPU资源过高,需找出具体占用CPU的线程所执行的代码,分析定位问题原因。
分析步骤如下:
(1) 使用top命令找出占用cpu最高的JAVA进程
(2) 找出占用cpu最高的线程
top -Hp 1781
(3) 占CPU最高线程17596换算成16进制对应线程44bc
用命令
printf "%x\n" 17596
(4) 打印占CPU最高JAVA进程1781的堆栈信息
jstack
1781> stackdump.txt
代码如下:
public class CPUConsumeTest {
public static void main(String[] args) {
int count = Runtime.getRuntime().availableProcessors();
System.out.println("processors " + count);
for(int i=0; i<count; i++) {
new Thread(new ConsumeCPUTest()).start();
}
for(int i=0; i<100; i++) {
new Thread(new NotConsumeCPUTest()).start();
}
}
}
class ConsumeCPUTest implements Runnable {
public void run() {
while(true) {
for(int i=0; i<10000000; i++) {
long l = 1000000;
Math.acos(l);
}
try {
Thread.currentThread().sleep(20);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
}
}
class NotConsumeCPUTest implements Runnable {
public void run() {
while(true) {
try {
Thread.currentThread().sleep(50);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
}
}
2、sy过高,上下文切换过频繁,将线程栈打印出来,看是否有哪个锁竞争过于激烈