处理时间,延迟和响应时间的含义和计算公式

时间:2012-09-06 15:33:09

标签: java networking jmeter qa performance-testing

任何人都可以从下图中验证处理时间,延迟和响应时间公式。我对响应时间公式有疑问。

如果您与我的这些公式有冲突,请告诉我。

Formula Picture

3 个答案:

答案 0 :(得分:5)

我会接受;

  • 最坏情况延迟为T8 - T1也经​​过了时间
  • 处理时间T6 - T3也是响应时间,因为您可以从第一个字节开始处理并且仍在处理直到最后一个字节。

如果在获得最后一个字节之前无法在服务器上开始处理消息,则必须使用最后一个字节来表示延迟,否则它不一致。

我认为服务器对性能的调整比客户端更高,即它可能从第一个数据包开始处理,但客户端可能需要整个消息做任何有用的事情(这取决于客户端)

答案 1 :(得分:2)

我同意Peter的处理时间和最坏情况延迟:T6 - T3

但是对于Latency,我会说它是T7 -T1。我认为这是第一个字节的时间。

在JMeter中:

JMeter measures the latency from just before sending the request to just  
after the first response has been received. Thus the time includes all the processing 
needed to assemble the request as well as assembling the first part of the response, 
which in general will be longer than one byte. Protocol analysers (such as Wireshark) 
measure the time when bytes are actually sent/received over the interface. The JMeter 
time should be closer to that which is experienced by a browser or other application
client. 

另见:

答案 2 :(得分:0)

来自wikipedia

  

在数据系统中,系统响应时间是之间的间隔   收到查询消息的传输结束和   开始向站发送响应消息   发起询问。

哪个应该是T5-T4(就像处理时间一样)。