码迷,mamicode.com
首页 > 编程语言 > 详细

java程序CPU消耗分析之找出最耗CPU线程

时间:2015-09-24 13:03:38      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

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过高,上下文切换过频繁,将线程栈打印出来,看是否有哪个锁竞争过于激烈

java程序CPU消耗分析之找出最耗CPU线程

标签:

原文地址:http://my.oschina.net/u/658658/blog/510602

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!