压力测试的轻量级具体做法(转)

一:压力测试中需要掌握的几个基本概念

1:吞吐率(Requests per second)

服务器并发处理能力的量化描述,单位是reqs/s,指的是某个并发用户数下单位时间内处理的请求数。某个并发用户数下单位时间内能处理的最大请求数,称之为最大吞吐率。

记住:吞吐率是基于并发用户数的。这句话代表了两个含义,1:吞吐率和并发用户数相关;2:不同的并发用户数下,吞吐率一般是不同的。

计算公式:总请求数  / 处理完成这些请求数所花费的时间,即

Request per second = Complete requests  / Time taken for tests

2:并发连接数(The number of concurrent connections)

并发连接数指的是某个时刻服务器所接受的请求数目,简单的讲,就是一个会话。

3:并发用户数(The number of concurrent users,Concurrency Level)

要注意区分这个概念和并发连接数之间的区别,一个用户可能同时会产生多个会话,也即连接数。在HTTP/1.1下,IE7支持两个并发连接,IE8支持6个并发连接,FireFox3支持4个并发连接,所以相应的,我们的并发用户数就得除以这个基数。

4:用户平均请求等待时间(Time per request)

计算公式:处理完成所有请求数所花费的时间/ (总请求数 / 并发用户数),即

Time per request = Time taken for tests /( Complete requests / Concurrency Level)

5:服务器平均请求等待时间(Time per request: across all concurrent requests)

计算公式:处理完成所有请求数所花费的时间 / 总请求数,即

Time taken for / testsComplete requests

可以看到,它是吞吐率的倒数。

同时,它也=用户平均请求等待时间/并发用户数,即

Time per request / Concurrency Level

二:具体做法

1:压力测试工具选择

重量级的工具有Visual Studio 自带的工具,还有Loader Runner(LR),轻量级的工具有Apache项目中的ApacheBench,简称ab。你可以在这里下载:ab.zip

2:ab的简单使用及参数介绍

image

以上测试,基于我的一个asp.net的页面。对于压力测试,必须时时刻刻做,如果不知道自己的应用能够承载多少的并发用户数,那基本上就是在扔定时炸弹。

 

 

简介

ab的全称是ApacheBench,是 Apache 附带的一个小工具,专门用于 HTTP Server 的benchmark testing,可以同时模拟多个并发请求。前段时间看到公司的开发人员也在用它作一些测试,看起来也不错,很简单,也很容易使用,所以今天花一点时间看了一下。

通过下面的一个简单的例子和注释,相信大家可以更容易理解这个工具的使用。

一个简单的例子

/*在这个例子的一开始,我执行了这样一个命令 ab -n 10 -c 10 http://www.google.com/。这个命令的意思是启动 ab ,向 http://www.google.com/ 发送10个请求(-n 10) ,并每次发送10个请求(-c 10)——也就是说一次都发过去了。跟着下面的是 ab 输出的测试报告,红色部分是我添加的注释。*/

C:\Program Files\Apache Software Foundation\Apache2.2\bin>ab -n 10 -c 10 http

://www.google.com/

This

is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0

Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/Copyright

Copyright

1997-2005 The Apache Software Foundation, http://www.apache.org/

 

Benchmarking http://www.google.com/ (be patient).....done

 

 

Server Software:        GWS/2.1

Server Hostname:        http://www.google.comserver/

Server

Port:            80

 

Document Path:          /

Document Length:        230 bytes

 

Concurrency Level:      10

/*整个测试持续的时间*/

Time taken for tests:   3.234651 seconds

/*完成的请求数量*/

Complete requests:      10

/*失败的请求数量*/

Failed requests:        0

Write errors:           0

Non-2xx responses:      10

Keep-Alive requests:    10

/*整个场景中的网络传输量*/

Total transferred:      6020 bytes

/*整个场景中的HTML内容传输量*/

HTML transferred:       2300 bytes

/*大家最关心的指标之一,相当于 LR 中的 每秒事务数 ,后面括号中的 mean 表示这是一个平均值*/

Requests per second:    3.09 [#/sec] (mean)

/*大家最关心的指标之二,相当于 LR 中的 平均事务响应时间 ,后面括号中的 mean 表示这是一个平均值*/

Time per request:       3234.651 [ms] (mean)

/*这个还不知道是什么意思,有知道的朋友请留言,谢谢 ^_^ */

Time per request:       323.465 [ms] (mean, across all concurrent requests)

/*平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题*/

Transfer rate:          1.55 [Kbytes/sec] received

/*网络上消耗的时间的分解,各项数据的具体算法还不是很清楚*/

Connection Times (ms)

              min  mean[+/-sd] median   max

Connect:       20  318 926.1     30    2954

Processing:    40 2160 1462.0   3034    3154

Waiting:       40 2160 1462.0   3034    3154

Total:         60 2479 1276.4   3064    3184

 

/*下面的内容为整个场景中所有请求的响应情况。在场景中每个请求都有一个响应时间,其中 50% 的用户响应时间小于 3064 毫秒,60 % 的用户响应时间小于 3094 毫秒,最大的响应时间小于 3184 毫秒*/

Percentage of the requests served within a certain time (ms)

  50%   3064

  66%   3094

  75%   3124

  80%   3154

  90%   3184

  95%   3184

  98%   3184

  99%   3184

 100%   3184 (longest request)

 

ApacheBench 主要是用来测试阿帕奇服务器执行效率用的。安装好 apache 服务器套件后,进入 bin 目录,就可以找到该可执行文件 ab.exe 。

         ApacheBench 可以针对某一特定 URL 模拟出连续的联机请求,同时还可以仿真出同时间点个数相同的联机请求,因而利用 ApacheBench 可帮助我们在网站开发期间仿真实际上线可能的情况,利用仿真出来的数据做为调整服务器设定或程序的依据。

ab 用法如下

Usage: ab [options] [http[s]://]hostname[:port]/path  
Options are:   
    -n requests     Number of requests to perform # 请求次数   
    -c concurrency  Number of multiple requests to make #同一时间发出多少个请求(并行连接)   
    -t timelimit    Seconds to max. wait for responses   
    -p postfile     File containing data to POST   
    -T content-type Content-type header for POSTing   
    -v verbosity    How much troubleshooting info to print   
    -w              Print out results in HTML tables   
    -i              Use HEAD instead of GET   
    -x attributes   String to insert as table attributes   
    -y attributes   String to insert as tr attributes   
    -z attributes   String to insert as td or th attributes   
    -C attribute    Add cookie, eg. 'Apache=1234. (repeatable)   
    -H attribute    Add Arbitrary header line, eg. 'Accept-Encoding: gzip'   
                    Inserted after all normal header lines. (repeatable)   
    -A attribute    Add Basic WWW Authentication, the attributes   
                    are a colon separated username and password.   
    -P attribute    Add Basic Proxy Authentication, the attributes   
                    are a colon separated username and password.   
    -X proxy:port   Proxyserver and port number to use   
    -V              Print version number and exit   
    -k              Use HTTP KeepAlive feature   
    -d              Do not show percentiles served table.   
    -S              Do not show confidence estimators and warnings.   
    -g filename     Output collected data to gnuplot format file.   
    -e filename     Output CSV file with percentages served   
    -s              Use httpS instead of HTTP (SSL)   
    -h              Display usage information (this message)

基本用法 :  
ab -n 全部请求数 -c 并发数 测试 url    
例 :ab -n 1000 -c 50 http://www.abc.com/a.php
得到结果类似于 ( 后面颜色字为中文翻译 ):   
Server Software:        Apache/2.0.55   
Server Hostname:        localhost   
Server Port:            80   
Document Path:          /1.php   
Document Length:        82522 bytes  # 请求文档大小   
Concurrency Level:      50           # 并发数   
Time taken for tests:   92.76140 seconds # 全部请求完成耗时   
Complete requests:      10000          # 全部请求数   
Failed requests:        1974           # 失败的请求   
  (Connect: 0, Length: 1974, Exceptions: 0)   
Write errors:           0   
Total transferred:      827019400 bytes   # 总传输大小   
HTML transferred:       825219400 bytes    
Requests per second:    108.61 [#/sec] (mean)   # 每秒请求数 ( 平均 )   
Time per request:       460.381 [ms] (mean)   # 每次并发请求时间 ( 所有并发 )   
Time per request:       9.208 [ms] (mean, across all concurrent requests)   # 每一请求时间 ( 并发平均 )  
Transfer rate:          8771.39 [Kbytes/sec] received    # 传输速率   
Connection Times (ms)    # 连接时间   
             min  mean[+/-sd] median   max   
Connect(# 连接 ):        0    0   2.1      0      46   
Processing(# 处理 ):    31  458  94.7    438    1078   
Waiting(# 等待 ):       15  437  87.5    422     938   
Total:         31  458  94.7    438    1078   
其它参数 :   
-n requests     全部请求数   
-c concurrency   并发数   
-t timelimit     最传等待回应时间   
-p postfile     POST 数据文件   
-T content-type POST Content-type   
-v verbosity    How much troubleshooting info to print   
-w              Print out results in HTML tables   
-i              Use HEAD instead of GET   
-x attributes   String to insert as table attributes   
-y attributes   String to insert as tr attributes   
-z attributes   String to insert as td or th attributes   
-C attribute     加入 cookie, eg. 'Apache=1234. (repeatable)   
-H attribute     加入 http 头 , eg. 'Accept-Encoding: gzip'   
                Inserted after all normal header lines. (repeatable)   
-A attribute    http 验证 , 分隔传递用户名及密码   
-P attribute    Add Basic Proxy Authentication, the attributes   
                are a colon separated username and password.   
-X proxy:port   代理服务器   
-V               查看 ab 版本   
-k              Use HTTP KeepAlive feature   
-d              Do not show percentiles served table.   
-S              Do not show confidence estimators and warnings.   
-g filename     Output collected data to gnuplot format file.   
-e filename     Output CSV file with percentages served   
-h              Display usage information (this message)

posted @ 2011-09-07 12:27  冰封的心  阅读(287)  评论(0)    收藏  举报