摘要:基準測試工具是什么是基于命令行的工具,均可運行在平臺下。即,用于指定壓力測試的并發數。添加一個基本的代理認證信息,用戶名和密碼之間用英文冒號隔開。打印版本號并退出。
基準測試工具(ab)
安裝abab是什么?
ab是基于命令行的工具,均可運行在windows、linux平臺下。
為什么選用這個工具?
易于使用,輸入少量命令選項,即可得出結果,同時易于安裝。
win:如果本地有apache的開發環境,那么ab默認在apache目錄下的bin目錄下,打開bin目錄可以看到
linux:直接yum install httpd-tools,安裝即可
直接敲入下面代碼(注意切換ab所在的目錄)
-c 10代表并發數是10
-n 10總共進行100次訪問
后面接要訪問的網址,切記不可缺少http://
D:phpStudyApachein>ab -c 10 -n 1000 http://example.com/phpinfo.php
待ab自己跑一下,得出下面結果
#ab工具的描述,注意其中的版本號 This is ApacheBench, Version 2.3 <$Revision: 1604373 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ #測試結果,共測試1000次,每100次顯示訪問進度,訪問的網站是example.com Benchmarking example.com (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.6.2 #服務器web軟件 Server Hostname: example.com #主機地址 Server Port: 80 #訪問端口 #文檔信息 Document Path: /phpinfo.php #訪問的文檔 Document Length: 94804 bytes #返回結果大小字節數(包含html,js,css,圖片及響應中的所有內容字節數總和) #鏈接信息 Concurrency Level: 10 #并發數,-c 10 設置了10個并發 Time taken for tests: 7.498 seconds #總耗時,單位秒 Complete requests: 1000 #總共請求中已完成的請求總數的和 Failed requests: 219 #失敗的請求數總和 (Connect: 0, Receive: 0, Length: 219, Exceptions: 0) Non-2xx responses: 9 #未收到2xx系列成功的請求總數 Total transferred: 94135779 bytes #整個請求總數中響應總數距的總大小字節數,包含頭信息 HTML transferred: 93952076 bytes #整個請求總數中正文內容的總大小字節 Requests per second: 133.36 [#/sec] (mean) #每秒支持的并發數,這里是每秒支持133.36個并發 Time per request: 74.984 [ms] (mean) #完成一個請求的總耗時 Time per request: 7.498 [ms] (mean, across all concurrent requests) #完成所有并發請求中一個請求的總耗時 Transfer rate: 12259.83 [Kbytes/sec] received #每秒收到的字節總數(KB) #測試的時間結果數據,留意Total一項,10個并發的情況下,完成一個請求,最小耗時(min)9毫秒,最大耗時(max)146毫秒 Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.7 0 20 Processing: 9 74 22.2 68 146 Waiting: 6 73 22.1 67 143 Total: 9 74 22.2 68 146 #完成請求百分比,例如第一項,50% 68,代表一半的請求在68毫秒內完成,95% 129,代表1000的請求里,百分之九十八的請求在129毫秒里完成 Percentage of the requests served within a certain time (ms) 50% 68 66% 78 75% 86 80% 92 90% 109 95% 122 98% 129 99% 133 100% 146 (longest request)ab選項
輸入下面命令得到ab幫助文檔,該幫助文檔,分別說明了用法和命令選項的含義
D:phpStudyApachein>ab -h
ab幫助文檔的輸出
Usage: ab [options] [http://]hostname[:port]/path Options are: -n requests Number of requests to perform -c concurrency Number of multiple requests to make at a time -t timelimit Seconds to max. to spend on benchmarking This implies -n 50000 -s timeout Seconds to max. wait for each response Default is 30 seconds -b windowsize Size of TCP send/receive buffer, in bytes -B address Address to bind to when making outgoing connections -p postfile File containing data to POST. Remember also to set -T -u putfile File containing data to PUT. Remember also to set -T -T content-type Content-type header to use for POST/PUT data, eg. "application/x-www-form-urlencoded" Default is "text/plain" -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. -q Do not show progress when doing more than 150 requests -l Accept variable document length (use this for dynamic pages) -g filename Output collected data to gnuplot format file. -e filename Output CSV file with percentages served -r Don"t exit on socket receive errors. -m method Method name -h Display usage information (this message)
英文看不懂,附上中文解釋,網上抄的,我沒試過
-n 即requests,用于指定壓力測試總共的執行次數。 -c 即concurrency,用于指定壓力測試的并發數。 -t 即timelimit,等待響應的最大時間(單位:秒)。 -b 即windowsize,TCP發送/接收的緩沖大小(單位:字節)。 -p 即postfile,發送POST請求時需要上傳的文件,此外還必須設置-T參數。 -u 即putfile,發送PUT請求時需要上傳的文件,此外還必須設置-T參數。 -T 即content-type,用于設置Content-Type請求頭信息,例如:application/x-www-form-urlencoded,默認值為text/plain。 -v 即verbosity,指定打印幫助信息的冗余級別。 -w 以HTML表格形式打印結果。 -i 使用HEAD請求代替GET請求。 -x 插入字符串作為table標簽的屬性。 -y 插入字符串作為tr標簽的屬性。 -z 插入字符串作為td標簽的屬性。 -C 添加cookie信息,例如:"Apache=1234"(可以重復該參數選項以添加多個)。 -H 添加任意的請求頭,例如:"Accept-Encoding: gzip",請求頭將會添加在現有的多個請求頭之后(可以重復該參數選項以添加多個)。 -A 添加一個基本的網絡認證信息,用戶名和密碼之間用英文冒號隔開。 -P 添加一個基本的代理認證信息,用戶名和密碼之間用英文冒號隔開。 -X 指定使用的代理服務器和端口號,例如:"126.10.10.3:88"。 -V 打印版本號并退出。 -k 使用HTTP的KeepAlive特性。 -k 使用HTTP的KeepAlive特性。 -d 不顯示百分比。 -S 不顯示預估和警告信息。 -g 輸出結果信息到gnuplot格式的文件中。 -e 輸出結果信息到CSV格式的文件中。 -r 指定接收到錯誤信息時不退出程序。 -h 顯示用法信息,其實就是ab -help。
一般用-n,-c,-t就好了
-n請求總數
-c并發數
-t指定秒數內的并發數
-t的用法說一下,下面的意思是在20秒內并發數10個訪問
D:phpStudyApachein> ab -c 10 -t 20 http://example.com/phpinfo.php This is ApacheBench, Version 2.3 <$Revision: 1604373 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking example.com (be patient) Finished 3011 requests Server Software: nginx/1.6.2 Server Hostname: example.com Server Port: 80 Document Path: /phpinfo.php Document Length: 94804 bytes Concurrency Level: 10 Time taken for tests: 20.006 seconds Complete requests: 3011 Failed requests: 495 (Connect: 0, Receive: 0, Length: 495, Exceptions: 0) Non-2xx responses: 54 Total transferred: 280896464 bytes HTML transferred: 280344222 bytes Requests per second: 150.50 [#/sec] (mean) Time per request: 66.444 [ms] (mean) Time per request: 6.644 [ms] (mean, across all concurrent requests) Transfer rate: 13711.44 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.5 0 10 Processing: 6 66 17.6 63 203 Waiting: 5 64 17.3 61 202 Total: 6 66 17.6 63 203 Percentage of the requests served within a certain time (ms) 50% 63 66% 69 75% 72 80% 75 90% 82 95% 92 98% 113 99% 125 100% 203 (longest request)
可能會影響基準測試的情況特別說明:如果訪問http://www.example.com/,沒有指定特定文件,記得要加最后的那個/,一定要加!!!否則可能會出現訪問不到的情況!!!
地理位置和網絡問題
響應文件大小
代碼的復雜度
瀏覽器解析
Web服務器的配置
地理位置和網絡問題如果Web服務器存放在境外,那么我們從本地訪問境外的網站,可想而知,經過的路由器結點,服務器結點,再通過太平洋海底的光纜,而后再訪問到Web服務器,Web服務器處理后,再繼續海底光纜,各個服務器、路由結點的跳轉返回,這樣的話肯定會影響到測試結果(我的建議是,直接在服務器上進行ab測試)
響應文件大小假如發送一個3MB的頁面,服務器網卡會把3MB的數據拆分成單個很小的數據包,傳輸過程中,只有一個數據包損壞或丟失,則會重新發送所有的數據包,所以發送的包越小越好,同時,越小的數據傳輸,越快傳輸到用戶的機器上。
代碼的復雜度代碼的復雜度即是對業務邏輯復雜的處理,還有對文件調用、數據庫訪問、遠端API接口的調用等等都會影響處理時間
瀏覽器解析每個瀏覽器都有自己對js、css、html的處理方法,想想IE8以下和chrome的區別即可知道
Web服務器設置一般Web服務器安裝后,簡單設置,即可實現Web服務(開箱即用),但是這樣的設置沒有發揮Web服務器的最大性能,需要資深的工程師對服務器進行相關配置,使之發揮最大性能,這里簡單實用Keep-Alive說明。
Keep-Alive的作用就是,Web服務器打開特定數量的連接,讓這些連接處于打開狀態,使之能快速處理傳入的請求,這樣就不會為每一個傳入的請求打開一個連接然后處理請求,減少服務器的處理請求的進程數,從而增加并發數。
在ab中使用-k進行測試,例如下面這句
#-k,允許服務器保存5個并發連接處于打開并允許的狀態,讓其他請求快速處理,減少創建新請求的處理時間 ab -c 5 -t 100 -k http://www.example.com/
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/21145.html
摘要:我們認為,在基準測試平臺中,包含真實數據的測量非常重要。其他結果訓練合成數據訓練真實數據詳情環境下表列出了用于測試的批量大小和優化器。在給定平臺上,以缺省狀態運行。 圖像分類模型的結果InceptionV3[2]、ResNet-50[3]、ResNet-152[4]、VGG16[5] 和 AlexNet[6] 使用 ImageNet[7] 數據集進行測試。測試環境為 Google Compu...
摘要:我們修改上面代碼,再來看下返回值類型限制的情況運行結果這段代碼我們額外聲明了返回值的類型為型。對函數返回值的聲明做了擴充,可以定義其返回值為,無論是否開啟嚴格模式,只要函數中有以外的其他語句都會報錯。 順風車運營研發團隊 王坤 發表至21CTO公眾號(https://mp.weixin.qq.com/s/ph...) showImg(https://segmentfault.c...
摘要:注這是我們應用性能分析系列的第一篇,閱讀第二篇可深入了解,第三篇則關注于性能調優實踐。性能分析的行為也會影響應用性能。主動被動性能分析主動分析器在開發過程中使用,由開發人員啟用。它對性能的影響最小,同時收集足夠的信息用于診斷性能問題。 注:這是我們 PHP 應用性能分析系列的第一篇,閱讀第二篇可深入了解 xhgui,第三篇則關注于性能調優實踐。 什么是性能分析? 性能分析是衡量應用程...
摘要:以上兩點點可以總結出,相對定位總是以父級左上角為原點進行定位的,如果父級不存在,則以瀏覽器左上角進行定位。 贊助我以寫出更好的文章,give me a cup of coffee? 2017最新最全前端面試題 案例代碼1 .rel{ border: 1px solid #ccc; height: 200px; ...
閱讀 1207·2021-11-17 09:33
閱讀 3612·2021-09-28 09:42
閱讀 3343·2021-09-13 10:35
閱讀 2493·2021-09-06 15:00
閱讀 2442·2021-08-27 13:12
閱讀 3612·2021-07-26 23:38
閱讀 1849·2019-08-30 15:55
閱讀 542·2019-08-30 15:53