在比较RH Linux和Solaris之间的Java TCP套接字性能时,我的一个测试是通过使用java客户端发送字符串并从java echo服务器读取回复来完成的。我测量发送和接收数据所花费的时间(即回程往返)。
测试运行100,000次(更多次出现的结果相似)。从我的测试来看,Solaris平均比RH Linux快25/30%,在具有默认系统和网络设置的同一台计算机上,相同的JVM参数(如果有的话)等等。
我不明白这么大的区别,是否有一些我缺少的系统/网络参数?
如果有人对运行它(发生次数必须在命令行中给出),则使用的代码(客户端和服务器)如下所示:
import java.io.*;
import java.net.*;
import java.text.*;
public class SocketTest {
public final static String EOF_STR = "EOF";
public final static String[] st = {"toto"
,"1234567890"
,"12345678901234567890"
,"123456789012345678901234567890"
,"1234567890123456789012345678901234567890"
,"12345678901234567890123456789012345678901234567890"
,"123456789012345678901234567890123456789012345678901234567890"
};
public static void main(String[] args) throws UnknownHostException, IOException, InterruptedException {
double mean = 0.0;
int port = 30000;
int times = Integer.parseInt(args[0]);
String resultFileName = "res.dat";
new EchoServerSimple(port); // instanciate and run
Socket s = new Socket("127.0.0.1", port);
s.setTcpNoDelay(true);
PrintWriter pwOut = new PrintWriter(s.getOutputStream(), true);
BufferedReader brIn = new BufferedReader(new InputStreamReader(s.getInputStream()));
long[] res = new long[times];
int j = 0;
for(int i = 0; i < times; i++) {
if(j >= st.length) j = 0;
long t0 = System.nanoTime();
pwOut.println(st[j++]);
brIn.readLine();
res[i] = System.nanoTime() - t0;
mean += ((double)res[i]) / times;
}
pwOut.println(EOF_STR);
s.close();
print(res, resultFileName);
System.out.println("Mean = "+new DecimalFormat("#,##0.00").format(mean));
}
public static void print(long[] res, String output) {
try {
PrintWriter pw;
pw = new PrintWriter(new File(output));
for (long l : res) {
pw.println(l);
}
pw.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
static class EchoServerSimple implements Runnable {
private ServerSocket _serverSocket;
public EchoServerSimple(int port) {
try { _serverSocket = new ServerSocket(port); }
catch (IOException e) { e.printStackTrace(); }
new Thread(this).start();
}
public void run() {
try {
Socket clientSocket = _serverSocket.accept();
clientSocket.setTcpNoDelay(true);
PrintWriter pwOut = new PrintWriter(clientSocket.getOutputStream(), true);
BufferedReader brIn = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
try {
while(true) {
String s = brIn.readLine();
pwOut.println(s);
if(s.equals(EOF_STR)) { clientSocket.close(); break; }
}
} catch (Exception e) {
e.printStackTrace();
try { clientSocket.close(); } catch (IOException e1) { e1.printStackTrace(); }
}
} catch (IOException e) {e.printStackTrace(); }
}
}
}
我在单个2.3GHz双核Nehalem上使用JRE 1.6.0_18用于两种操作系统。 2 OS是Solaris 10和RH Linux 5.4,带有RT Kernel 2.6.24.7。
非常感谢。
答案 0 :(得分:1)
答案 1 :(得分:0)
您也可以在serverfault.com上询问此问题,因为那里的人可能对TCP设置和/或操作系统性能有更多了解。
答案 2 :(得分:0)
客户端和服务器是否在同一主机上运行?