我有一个第三方Java应用程序,它运行在Win2008 R2 64位下的Tomcat下。它是一个多线程应用程序,通过SOAP服务公开其API。
当我查看“任务管理器性能”选项卡时,看起来它只使用8个内核中的4个,无论我投入多少负载。该应用程序的供应商发誓说他们没有做任何会影响CPU使用的事情(并且他们没有看到它们的结果)。
我做了以下事情:
有些硬件如下: 2个Xeon E5606 @ 2.13 Ghz处理器,每个处理器4个核心。 72 GB的RAM - 分配给Tomcat的24GB。
为什么Java应用只使用一半核心?
答案 0 :(得分:2)
尝试在同一JVM中运行此JSP以测试是否使用了所有核心:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
class ThreadLoad implements Runnable {
public void run() {
long result = 0;
// increase the amount of loops until sufficient load
for (long dummy = 0; dummy < 100000000; dummy++) {
if (dummy % 2 == 0)
result += dummy;
else
result -= dummy;
}
}
}
int cpus = Runtime.getRuntime().availableProcessors();
Thread[] threads = new Thread[cpus];
for (int i = 0; i < cpus; i++) {
threads[i] = new Thread(new ThreadLoad());
threads[i].start();
}
for (int i = 0; i < cpus; i++) {
threads[i].join();
}
response.getWriter().println("Done");
%>
</body>
</html>