Java VisualVM CPU usage and processor affinity

此生再无相见时 提交于 2019-12-05 23:04:07

问题


In my experience today, I find that Oracle's Java VisualVM shows cpu usage as a percent of total machine cores, even when the JVM being monitored has a limited process affinity set in the OS. This is in the "monitor" tab.

Limiting the monitored jvm with taskset (on linux, Ubuntu), when the processors allowed to that jvm are near 100% utilization in htop, the cpu percentage shown in VisualVM is clearly equal to the total number of cpus divided by the number of processors allowed to the monitored jvm. The resolution of the scale is therefore inadequate for this case.

Can you confirm you observed the same on other operating systems or in general?

Is there a way to have VisualVM account for only affinity-assigned cores when showing cpu usage?


回答1:


According to VisualVM source code, CPU usage is indeed calculated as total CPU time divided by number of processors:

    long processCpuTime = tracksProcessCpuTime ?
        model.getProcessCpuTime() / processorsCount : -1;

where processorsCount is obtained from OperatingSystemMXBean:

    OperatingSystemMXBean osbean = mxbeans.getOperatingSystemMXBean();
    if (osbean != null) processorsCount = osbean.getAvailableProcessors();

There was a long-standing JVM bug JDK-6515172, that the process affinity was not taken into account, i.e. getAvailableProcessors always returned the total number of CPUs regardless of tasksets. This was specific to Linux and BSD; worked normally on Solaris and Windows.

About a month ago this bug has been finally resolved. The fix, however, is only for JDK 9.

Look at this question for possible workarounds. They are somewhat ugly though.



来源:https://stackoverflow.com/questions/35802052/java-visualvm-cpu-usage-and-processor-affinity

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!