Analyzing ab performance test results under Apache

Analyzing ab performance test results under Apache

I have always used Loadrunner to do performance testing. Loadrunner is actually a very heavy performance testing tool. It has comprehensive functions and is a very good butcher knife.

If we just need to do a simple performance test on a page, using Loadruner is not a good choice.

So I found a small knife - ab to try. This knife is really light and sharp. Here I will record some of my understanding of the ab testing process for your reference.

Let’s take Baidu’s homepage as an example. First of all, you need to have a knife, that is, install Apache. There are a lot of tutorials on the Internet, so I won’t repeat them. This article uses the ab command that comes with MacBook for testing.

Test scenario: simulate 10 users and initiate a total of 100 requests to the Baidu homepage.

Test command: ab -n 100 -c 10 https://www.baidu.com/index.html

This article mainly analyzes the test report of ab. I will open a new post to discuss the usage of ab another day.

Test Report:

Let me explain my understanding line by line. I have consulted online materials for the following notes, but the content is all hand-typed after my own understanding. I hope that adding my own understanding will make it easier for readers to understand.

bogon:~ tang$ ab -n 100 -c 10 https://www.baidu.com/index.html

This is ApacheBench, Version 2.3 <$Revision: 1706008 $>

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

Licensed to The Apache Software Foundation, http://www.apache.org/

//以上為apache的版本信息,與本次測試無關

Benchmarking www.baidu.com (be patient).....done

//以上內容顯示測試完成度,本次測試發起請求數量較少,完成較快,無中間過程顯示。在請求數量很多時會分行顯示當前完成數量。

Server Software: bfe/1.0.8.14 //被測試的服務器所用的軟件信息,這里使用的是百度自己開發的反向代理Baidu Front End,類似nginx。

Server Hostname: www.baidu.com //被測主機名

Server Port: 443 //被測主機的服務端口號,一般http請求的默認端口號是80,https默認使用443端口

SSL/TLS Protocol: TLSv1.2,ECDHE-RSA-AES128-GCM-SHA256,2048,128 //加密協議

Document Path: /index.html //請求的具體文件

Document Length: 227 bytes //請求的文件index.html大小

Concurrency Level: 10 //并發級別,也就是并發數,請求中-c參數指定的數量

/本次測試總共花費的時間

Complete requests: 100 //本次測試總共發起的請求數量

//失敗的請求數量。因網絡原因或服務器性能原因,發起的請求并不一定全部成功,通過該數值和Complete requests相除可以計算請求的失敗率,作為測試結果的重要參考。

//總共傳輸的數據量,指的是ab從被測服務器接收到的總數據量,包括index.html的文本內容和請求頭信息。

HTML transferred: 22700 bytes //從服務器接收到的index.html文件的總大小,等于Document Length*Complete requests=227bytes*100=22700 bytes

Requests per second: 91.50 [#/sec] (mean) //平均(mean)每秒完成的請求數:QPS,這是一個平均值,等于Complete requests/Time taken for tests=100/1.093=91.50

//從用戶角度看,完成一個請求所需要的時間(因用戶數量不止一個,服務器完成10個請求,平均每個用戶才接收到一個完整的返回,所以該值是下一項數值的10倍。)

//服務器完成一個請求的時間。

Transfer rate: 92.32 [Kbytes/sec] received //網絡傳輸速度。對于大文件的請求測試,這個值很容易成為系統瓶頸所在。要確定該值是不是瓶頸,需要了解客戶端和被測服務器之間的網絡情況,包括網絡帶寬和網卡速度等信息。

Connection Times (ms)

min mean[+/-sd] median max

Connect: 47 74 12.9 74 106

Processing: 9 32 20.2 32 106

Waiting: 9 29 19.1 27 98

Total: 66 106 20.8 106 195

//這幾行組成的表格主要是針對響應時間也就是第一個Time per request進行細分和統計。一個請求的響應時間可以分成網絡鏈接(Connect),系統處理(Processing)和等待(Waiting)三個部分。表中min表示最小值;mean表示平均值;[+/-sd]表示標準差(Standard Deviation) ,也稱均方差(mean square error),這個概念在中學的數學課上學過,表示數據的離散程度,數值越大表示數據越分散,系統響應時間越不穩定。 median表示中位數; max當然就是表示最大值了。

//需要注意的是表中的Total并不等于前三行數據相加,因為前三行的數據并不是在同一個請求中采集到的,可能某個請求的網絡延遲最短,但是系統處理時間又是最長的呢。所以Total是從整個請求所需要的時間的角度來統計的。這里可以看到最慢的一個請求花費了195ms,這個數據可以在下面的表中得到驗證。

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

50% 106

66% 109

75% 111

80% 114

90% 118

95% 154

98% 176

99% 195

100% 195 (longest request)

//這個表第一行表示有50%的請求都是在106ms內完成的,可以看到這個值是比較接近平均系統響應時間(第一個Time per request: 109.287 [ms] (mean))

以此類推,90%的請求是小于等于118ms的。剛才我們看到響應時間最長的那個請求是195ms,那么顯然所有請求(100%)的時間都是小于等于195毫秒的,也就是表中最后一行的數據肯定是時間最長的那個請求(longest request)。

Through the above explanation, I believe everyone can understand the meaning of these data. If there are any errors, please leave a message to correct them.

This concludes this article on analyzing ab performance test results under Apache. I hope it will be helpful for everyone’s study, and I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Using Apache ab to perform http performance testing
  • Detailed explanation of the use of Apache performance testing tool ab
  • Apache AB performance testing tool usage tutorial

<<:  A brief discussion on the semantics of HTML and some simple optimizations

>>:  Pure CSS to achieve the list pull-down effect in the page

Recommend

HTML optimization speeds up web pages

Obvious HTML, hidden "public script" Th...

Using radial gradient in CSS to achieve card effect

A few days ago, a colleague received a points mal...

How to query or obtain images in a private registry

Docker queries or obtains images in a private reg...

Detailed explanation of Linux text processing command sort

sort Sort the contents of a text file Usage: sort...

How to use MySQL common functions to process JSON

Official documentation: JSON Functions Name Descr...

How to convert Chinese into UTF-8 in HTML

In HTML, the Chinese phrase “學好好學” can be express...

Summary of shell's method for determining whether a variable is empty

How to determine whether a variable is empty in s...

Analyzing the troublesome Aborted warning in MySQL through case studies

This article mainly introduces the relevant conte...

Using Docker run options to override settings in the Dockerfile

Usually, we first define the Dockerfile file, and...

vue3.0+echarts realizes three-dimensional column chart

Preface: Vue3.0 implements echarts three-dimensio...

CSS3 realizes the website product display effect diagram

This article introduces the effect of website pro...

Implementation of iview permission management

Table of contents iview-admin2.0 built-in permiss...

The meaning of status code in HTTP protocol

A status code that indicates a provisional respon...

How to update the view synchronously after data changes in Vue

Preface Not long ago, I saw an interesting proble...

JS implements the dragging and placeholder functions of elements

This blog post is about a difficulty encountered ...