在apache bench中定义连接,处理,等待

rpa*_*tel 40 apache performance benchmarking

当我运行apache bench时,我得到的结果如下:

Command: abs.exe -v 3 -n 10 -c 1 https://mysite
Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:      203  213   8.1    219     219
Processing:    78  177  88.1    172     359
Waiting:       78  169  84.6    156     344
Total:        281  389  86.7    391     564
Run Code Online (Sandbox Code Playgroud)

我似乎无法找到连接,处理和等待的定义.这些数字是什么意思?

Gar*_*son 36

来自http://chestofbooks.com/computers/webservers/apache/Stas-Bekman/Practical-mod_perl/9-1-1-ApacheBench.html:

连接和等待时间

建立连接并获取响应的第一位所花费的时间

处理时间

服务器响应时间 - 即服务器处理请求和发送回复所花费的时间

总时间

连接和处理时间的总和

我把它等同于:

  • 连接时间:套接字打开所需的时间
  • 处理时间:第一个字节+传输
  • 等待:时间到第一个字节
  • 总计:连接+处理总和


小智 30

通过查看源代码,我们找到了这些时间点:

apr_time_t start,           /* Start of connection */
           connect,         /* Connected, start writing */
           endwrite,        /* Request written */
           beginread,       /* First byte of input */
           done;            /* Connection closed */
Run Code Online (Sandbox Code Playgroud)

当请求完成时,一些时间存储为:

        s->starttime = c->start;
        s->ctime     = ap_max(0, c->connect - c->start);
        s->time      = ap_max(0, c->done - c->start);
        s->waittime  = ap_max(0, c->beginread - c->endwrite);
Run Code Online (Sandbox Code Playgroud)

并且'处理时间'稍后计算为

s->time - s->ctime;
Run Code Online (Sandbox Code Playgroud)

因此,如果我们将其转换为时间表:

t1: Start of connection
t2: Connected, start writing
t3: Request written
t4: First byte of input
t5: Connection closed
Run Code Online (Sandbox Code Playgroud)

那么定义将是:

Connect:      t1-t2   Most typically the network latency
Processing:   t2-t5   Time to receive full response after connection was opened
Waiting:      t3-t4   Time-to-first-byte after the request was sent
Total time:   t1-t5
Run Code Online (Sandbox Code Playgroud)