使用ab對nginx進行壓力測試

nginx以高併發,省內存著稱。php

相信大多數安裝nginx的同窗都想知道本身的nginx性能如何。html

我想跟你們分享下我使用ab工具的壓力測試方法和結果,nginx

ab是針對apache的性能測試工具,能夠只安裝ab工具。apache

ubuntu安裝abubuntu

apt-get install apache2-utils

centos安裝abcentos

yum install httpd-tools

測試以前須要準備一個簡單的html、一個php、一個圖片文件。服務器

分別對他們進行測試。cookie

咱們把這個三個文件放到nginx安裝目錄默認的html目錄下,併發

準備以後咱們就能夠測試了高併發

ab -kc 1000 -n 1000 http://localhost/ab.html

這個指令會使用1000個併發,進行鏈接1000次。結果以下

root@~# ab -kc 1000 -n 1000 http://www.nginx.cn/ab.html
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking www.nginx.cn (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests
Server Software: nginx/1.2.3
Server Hostname: www.nginx.cn
Server Port: 80

Document Path: /ab.html
Document Length: 192 bytes

Concurrency Level: 1000
Time taken for tests: 60.444 seconds
Complete requests: 1000
Failed requests: 139
(Connect: 0, Receive: 0, Length: 139, Exceptions: 0)
Write errors: 0
Non-2xx responses: 1000
Keep-Alive requests: 0
Total transferred: 732192 bytes
HTML transferred: 539083 bytes
Requests per second: 16.54 [#/sec] (mean)Time per request: 60443.585 [ms] (mean)
Time per request: 60.444 [ms] (mean, across all concurrent requests)Transfer rate: 11.83 [Kbytes/sec] received

Connection Times (ms)
min mean[+/-sd] median max
Connect: 55 237 89.6 261 328
Processing: 58 5375 13092.8 341 60117
Waiting: 57 5337 12990.0 341 59870
Total: 386 5611 13083.7 572 60443

Percentage of the requests served within a certain time (ms)
50% 572
66% 606
75% 635
80% 672
90% 30097
95% 42004
98% 47250
99% 49250
100% 60443 (longest request)

對於php文件和圖片文件可使用一樣指令進行,結果我就不貼出來了。

ab -kc 500 -n 5000 http://localhost/ab.php

ab -kc 500 -n 5000 http://localhost/ab.gif

輸出結果咱們能夠從字面意思就能夠理解。

這裏對兩個比較重要的指標作下說明

好比

Requests per second: 16.54 [#/sec] (mean)
Time per request: 60443.585 [ms] (mean)

Requests per second: 16.54 [#/sec] (mean)
表示當前測試的服務器每秒能夠處理16.54個靜態html的請求事務,後面的mean表示平均。這個數值表示當前機器的總體性能,值越大越好。

Time per request: 60443.585 [ms] (mean)
單個併發的延遲時間,後面的mean表示平均。
隔離開當前併發,單獨完成一個請求須要的平均時間。

順帶說一下兩個Time per request區別

Time per request: 60443.585 [ms] (mean)
Time per request: 60.444 [ms] (mean, across all concurrent requests)
前一個衡量單個請求的延遲,cpu是分時間片輪流執行請求的,多併發的狀況下,一個併發上的請求時須要等待這麼長時間才能獲得下一個時間片。
計算方法Time per request: 60.444 [ms] (mean, across all concurrent requests)*併發數

通俗點說就是當以-c 10的併發下完成-n 1000個請求的同時,額外加入一個請求,完成這個求平均須要的時間。

後一個衡量性能的標準,它反映了完成一個請求須要的平均時間,在當前的併發狀況下,增長一個請求須要的時間。
計算方法Time taken for tests: 60.444 seconds/Complete requests: 1000

通俗點說就是當以-c 10的併發下完成-n 1001個請求時,比完成-n1000個請求多花的時間。
你能夠適當調節-c 和-n大小來測試服務器性能,藉助htop指令來直觀的查看機器的負載狀況。

個人機器是盛大雲的超微主機,平時負載cpu是1.7%,htop命令結果截圖

加壓後的負載100%,負載基本已經上來了。htop命令結果截圖

 

看來我須要好好優化一下,或者就換臺機器了。

----------------

ab的參數詳細解釋

普通的測試,使用-c -n參數配合就能夠完成任務 格式: ./ab [options] [http://]hostname[:port]/path 參數: -n 測試的總請求數。默認時,僅執行一個請求 -c 一次併發請求個數。默認是一次一個。 -H 添加請求頭,例如 ‘Accept-Encoding: gzip’,以gzip方式請求。 -t 測試所進行的最大秒數。其內部隱含值是-n 50000。它可使對服務器的測試限制在一個固定的總時間之內。默認時,沒有時間限制。 -p 包含了須要POST的數據的文件. -T POST數據所使用的Content-type頭信息。 -v 設置顯示信息的詳細程度 – 4或更大值會顯示頭信息, 3或更大值能夠顯示響應代碼(404, 200等), 2或更大值能夠顯示警告和其餘信息。 -V 顯示版本號並退出。 -w 以HTML表的格式輸出結果。默認時,它是白色背景的兩列寬度的一張表。 -i 執行HEAD請求,而不是GET。 -C -C cookie-name=value 對請求附加一個Cookie:行。 其典型形式是name=value的一個參數對。此參數能夠重複。

相關文章
相關標籤/搜索