长连接和短连接性能测试结果差异.docx

上传人:b****4 文档编号:3706247 上传时间:2022-11-24 格式:DOCX 页数:8 大小:18.34KB
下载 相关 举报
长连接和短连接性能测试结果差异.docx_第1页
第1页 / 共8页
长连接和短连接性能测试结果差异.docx_第2页
第2页 / 共8页
长连接和短连接性能测试结果差异.docx_第3页
第3页 / 共8页
长连接和短连接性能测试结果差异.docx_第4页
第4页 / 共8页
长连接和短连接性能测试结果差异.docx_第5页
第5页 / 共8页
点击查看更多>>
下载资源
资源描述

长连接和短连接性能测试结果差异.docx

《长连接和短连接性能测试结果差异.docx》由会员分享,可在线阅读,更多相关《长连接和短连接性能测试结果差异.docx(8页珍藏版)》请在冰豆网上搜索。

长连接和短连接性能测试结果差异.docx

长连接和短连接性能测试结果差异

长连接和短连接性能测试结果差异

这次测试针对长连接和短连接对性能测试的影响做一个简单的比较,详细情况见下面

1.      什么是TCP长连接什么是短连接?

一般人讲的长连接与短连接的,这是一个通俗的说法,这个TCP连接是根据连接时间的长短定义的。

何谓短连接:

就是一次操作完后断开连接,常见于大客户情况如WEB服务器,如果每个连接都使用长连接那么每个客户都保留一个socket,系统资源耗费比较大。

何谓长连接:

就是一次操作完后不断开连接,连接在一段时间保持着,则是多用于操作频繁情况,每个TCP连接都需要三步握手这需要时间如果每个操作都是先连接再操作的话那么处理速度会降低很多所以每个操作完后都不断开下次处理时直接发送数据包就可以了,不用重新建立TCP新连接。

2.      在性能测试过程中,需要注意业务需求,应该是用长连接还是短连接?

之间的性能差异大概是多少?

如果有差异是消耗在哪里?

2.1测试场景简介:

下面以测试XXXX性能测试结果为例,做个简单的对比.由于XXXX后端协议用的是TCP/IP协议,后端AGENT发送很多带不同参数类型到MONITOR。

现要测试一个MONITOR处理极限是多少?

理想状态希望一个monitor最高能支持1W条AGENTE的信息,并且这个1W条信息时希望只建立一个SOCKET连接里面发送的事务数。

2.2测试环境描述:

机器名

CPU

内存

OS

应用软件

说明

10.20.136.19 (DB)

8

16G

Linux

tomcat

 

10.20.136.23(APP)

8

16G

Linux

tomcat

 

10.20.136.73

8

8G

windows

loadrunner

 

 

2.2测试脚本简述:

在LR中开发JAVA脚本,直接发送字符串并成功接受返回的字符串。

2.4测试结果对比:

并发线程

连接类型

TPS

响应时间

CPU

内存

20

长连接

6766

0.015S

APP:

780%

DB:

23%

APP:

36%

DB:

85%

20

短连接

7292

0.011S

APP:

740%

DB:

14%

APP:

57%

DB:

83%

 

2.5测试结果分析:

线程并发数一样,但是长连接的TPS低于短连接的TPS,相差大概在6%左右,长连接的应用服务器的APP的资源利用稍微大点,但是短连接的内存消耗明显比长连接的高,高出了大概58%左右。

之所以消耗怎么高是因为,短连接不停的忙着建立连接,不停的建立握手,这样频繁的操作,造成内存资源上的很大消耗。

 

3.总结

虽然短连接的测试结果TPS以及相应时间是好于长连接的测试结果,但是不符合线上环境。

最重要的一点是,测试人员,做测试脚本以及设计测试场景的时候,一定谨记不要把测试数据发送到服务器端,压力上去后,就不去分析了写的测试脚本以及测试场景是否是满足线上需要的,这样得出的测试结果会给开发人员造成一定的误解。

测试的场景单一,没有去分析线程并发在不同的情况下的,性能结果差异是多少,如果谁有兴趣可以在分不同的线程并发,多尝试几次,看看性能数据的差异是多少?

4.测试代码附上,

4.1长连接代码:

/*

 *LoadRunnerJavascript.(Build:

3020)

 *

 *ScriptDescription:

 *                    

 */

importlrapi.lr;

importjava.io.DataInputStream;

importjava.io.DataOutputStream;

importjava.io.IOException;

import.Socket;

publicclassActions

{

 Socketsocket=null;

 DataOutputStreamout;

 DataInputStreamin;

 publicintinit()throwsThrowable{

           socket=newSocket("10.20.136.23",13888);

           out=newDataOutputStream(socket.getOutputStream());

           in=newDataInputStream(socket.getInputStream());

           sendConnect(out,"10.16.200.119","performance_test");

           Stringtext=readMessage(in);

           System.out.println(text);

           return0;

 }//endofinit

 publicintaction()throwsThrowable{

   

 

  send_memory(out);

  send_jvm(out);

  send_gc(out);

  send_threading(out);

 

           return0;

 }//endofaction

 publicintend()throwsThrowable{

    if(socket!

=null){

               socket.close();

           }

    

           return0;

 }//endofend

 publicStringreadMessage(DataInputStreamin)throwsIOException{

           shorttype=in.readShort();

           if(type!

=1){

               thrownewIOException("notsupporttype"+type);

           }

           intlength=in.readInt();

           byte[]bytes=newbyte[length];

           in.readFully(bytes);

           returnnewString(bytes,"UTF-8");

 }

 publicvoidsendConnect(DataOutputStreamout,Stringip,Stringhostname)throwsIOException{

  Stringmessage="[{/"T/":

/"Connect/",/"S/":

1},{/"MAC_ADDR/":

[/"00-26-c6-8f-d8-2c/",/"00-50-56-c0-00-08/"],/"IP/":

[/""

    +ip

    +"/",/"192.168.64.1/"],/"VERSON/":

/"2.5/",/"SERVICE_TAG/":

/"wenshao-pc-service-tag/",/"HOST_NAME/":

/""

    +hostname+"/",/"CLIENT_SESSION/":

[]}]";

  sendMessage(out,message);

 }

 publicvoidsend_memory(DataOutputStreamout)throwsException{

  longdate=System.currentTimeMillis();

  Stringmessage="[{/"T/":

/"MonitorItemData/",/"S/":

39},{/"D/":

{/"UsedPhysicalMemorySize/":

1908174848,/"MemoryNonHeapCommitted/":

41943040,/"MemoryHeapCommitted/":

122224640,/"MemoryHeapUsed/":

101766328,/"TotalPhysicalMemorySize/":

2036363264,/"UsedSwapSpaceSize/":

2582024192,/"TotalSwapSpaceSize/":

4072726528,/"MemoryNonHeapUsed/":

41367072},/"S/":

{/"APP_NUM/":

/"demo/",/"INST_NUM/":

null},/"TS/":

"+date+",/"MID/":

548691}]";

  sendMessage(out,message);

 }

 publicvoidsend_jvm(DataOutputStreamout)throwsException{

  longdate=System.currentTimeMillis();

  Stringmessage="[{/"T/":

/"MonitorItemData/",/"S/":

42},{/"D/":

{/"AvailableProcessors/":

2,/"JavaHome/":

/"C:

//ProgramFiles//Java//jdk1.6.0_19//jre/",/"JavaVersion/":

/"1.6.0_19/",/"PID/":

/"3112/",/"OSVersion/":

/"6.1/",/"UnloadedClassCount/":

0,/"TotalCompilationTime/":

6089,/"OSName/":

/"Windows7/",/"JavaSpecificationVersion/":

/"1.6/",/"Arch/":

/"amd64/",/"LoadedClassCount/":

5006,/"JVM/":

/"JavaHotSpot(TM)64-BitServerVM(16.2-b04,mixedmode)/",/"StartTime/":

1288273090499,/"InputArguments/":

/"-agentlib:

jdwp=transport=dt_socket,suspend=y,address=localhost:

55785/n-Dcatalina.base=D:

//java//workspace-dragoon-25//.metadata//.plugins//org.eclipse.wst.server.core//tmp0/n-Dcatalina.home=D:

//java//apache-tomcat-6.0.26/n-Dwtp.deploy=D:

//java//workspace-dragoon-25//.metadata//.plugins//org.eclipse.wst.server.core//tmp0//wtpwebapps/n-Djava.endorsed.dirs=D:

//java//apache-tomcat-6.0.26//endorsed/n-Dfile.encoding=UTF-8/",/"TotalLoadedClassCount/":

5006,/"JavaLibraryPath/":

/"C:

//ProgramFiles//Java//jdk1.6.0_19//bin;.;C:

//Windows//Sun//Java//bin;C:

//Windows//system32;C:

//Windows;C:

//ProgramFiles//Java//jdk1.6.0_19//jre//bin;C:

//product//11.1.0//client_1;C:

//Windows//system32;C:

//Windows;C:

//Windows//System32//Wbem;C:

//Windows//System32//WindowsPowerShell//v1.0//;C:

//ProgramFiles(x86)//TortoiseSVN//bin;D:

//java//apache-maven-2.2.1//bin;C:

//ProgramFiles(x86)//Subversion//bin;C:

//ProgramFiles(x86)//SSHCommunicationsSecurity//SSHSecureShell;C:

//ProgramFiles(x86)//Subversion//bin;C:

//Python25;D:

//java//diffutils-2.8.7-1-bin//bin/"},/"S/":

{/"APP_NUM/":

/"demo/",/"INST_NUM/":

null},/"TS/":

"+date+",/"MID/":

554891}]";

  sendMessage(out,message);

 }

 publicvoidsend_gc(DataOutputStreamout)throwsException{

  longdate=System.currentTimeMillis();

  Stringmessage="[{/"T/":

/"MonitorItemData/",/"S/":

41},{/"D/":

{/"YoungGCCollectionTime/":

107,/"FullGCCollectionTime/":

141,/"FullGCCollectionCount/":

11,/"PermGenUsed/":

39267864,/"SurvivorSpaceUsed/":

7201080,/"EdenSpaceUsed/":

85454816,/"YoungGCCollectionCount/":

10,/"OldGenUsed/":

11791088},/"S/":

{/"APP_NUM/":

/"demo/",/"INST_NUM/":

null},/"TS/":

"+date+",/"MID/":

552091}]";

  sendMessage(out,message);

 }

 publicvoidsend_threading(DataOutputStreamout)throwsException{

  longdate=System.currentTimeMillis();

  Stringmessage="[{/"T/":

/"MonitorItemData/",/"S/":

43},{/"D/":

{/"RunnableThreadCount/":

15,/"ProcessCpuTimeRate/":

0.901,/"NewThreadCount/":

0,/"TotalStartedThreadCount/":

49,/"BlockedThreadCount/":

0,/"DeadLockedThreadCount/":

0,/"FullGCCollectionTimeRate/":

0,/"DaemonThreadCount/":

17,/"WaitingThreadCount/":

11,/"TeminatedThreadCount/":

0,/"ThreadCount/":

48,/"TimedWaitingThreadCount/":

25},/"S/":

{/"APP_NUM/":

/"demo/",/"INST_NUM/":

null},/"TS/":

"+date+",/"MID/":

550191}]";

  sendMessage(out,message);

 }

 privatevoidsendMessage(DataOutputStreamout,Stringtext)throwsIOException{

  byte[]bytes=text.getBytes("UTF-8");

  out.writeShort

(1);

  out.writeInt(bytes.length);

  out.write(bytes);

 }

}

4.2短连接代码

/*

 *LoadRunnerJavascript.(Build:

3020)

 *

 *ScriptDescription:

 *                    

 */

importlrapi.lr;

importjava.io.DataInputStream;

importjava.io.DataOutputStream;

importjava.io.IOException;

import.Socket;

publicclassActions

{

 publicintinit()throwsThrowable{

  return0;

 }//endofinit

 publicintaction()throwsThrowable{

           test_connect();

  return0;

 }//endofaction

 publicintend()throwsThrowable{

  return0;

 }//endofend

       publicvoidtest_connect()throwsException{

   //10.249.168.152:

18001

  Socketsocket=null;

  try{

   socket=newSocket("10.20.136.23",13888);

   DataOutputStreamout=newDataOutputStream(socket.getOutputStream());

   DataInputStreamin=newDataInputStream(socket.getInputStream());

   sendConnect(out,"10.16.200.119","performance_test");

   Stringtext=readMessage(in);

   System.out.println(text);

   send_memory(out);

   send_jvm(out);

   send_gc(out);

   send_threading(out);

  }finally{

   if(socket!

=null){

    socket.close();

   }

  }

 }

       

 publicStringreadMessage(DataInputStreamin)throwsIOException{

  shorttype=in.readShort();

  if(type!

=1){

   thrownewIOException("notsupporttype"+type);

  }

  intlength=in.readInt();

  byte[]bytes=newbyte[length];

  in.readFully(bytes);

  returnnewString(bytes,"UTF-8");

 }

 publicvoidsendConnect(DataOutputStreamout,Stringip,Stringhostname)throwsIOException{

  Stringmessage="[{/"T/":

/"Connect/",/"S/":

1},{/"MAC_ADDR/":

[/"00-26-c6-8f-d8-2c/",/"00-50-56-c0-00-08/"],/"IP/":

[/""

    +ip

    +"/",/"192.168.64.1/"],/"VERSON/":

/"2.5/",/"SERVICE_TAG/":

/"wenshao-pc-service-tag/",/"HOST_NAME/":

/""

    +hostname+"/",/"CLIENT_SESSION/":

[]}]";

  sendMessage(out,message);

 }

 publicvoidsend_memory(DataOutputStreamout)throwsException{

  longdate=System.currentTimeMillis();

  Stringmessage="[{/"T/":

/"MonitorItemData/",/"S/":

39},{/"D/":

{/"UsedPhysicalMemorySize/":

1908174848,/"MemoryNonHeapCommitted/":

41943040,/"MemoryHeapCommitted/":

122224640,/"MemoryHeapUsed/":

101766328,/"TotalPhysicalMemorySize/":

2036363264,/"UsedSwapSpaceSize/":

2582024192,/"TotalSwapSpaceSize/":

4072726528,/"MemoryNonHeapUsed/":

41367072},/"S/":

{/"APP_NUM/":

/"demo/",/"INST_NUM/":

null},/"TS/":

"+date+",/"MID/":

548691}]";

  sendMessage(out,message);

 }

 publicvoidsend_jvm(DataOutputStreamout)throwsException{

  longdate=System.currentTimeMillis();

  Stringmessage="[{/"T/":

/"MonitorItemData/",/"S/":

42},{/"D/":

{/"AvailableProcessors/":

2,/"JavaHome/":

/"C:

//ProgramFiles//Java//jdk1.6.0_19//jre/",/"JavaVersion/":

/"1.6.0_19/",/"PID/":

/"3112/",/"OSVersion/":

/"6.1/",/"UnloadedClassCount/":

0,/"TotalCompilationTime/":

6089,/"OSName/":

/"Windows7/",/"JavaSpecificationVersion/":

/"1.6/",/"Arch/":

/"amd64/",/"LoadedClassCount/":

5006,/"JVM/":

/"JavaHotSpot(TM)64-Bit

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 求职职场 > 简历

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1