資料庫基準測試工具 sysbench

小浩945發表於2019-05-06

基準測試

定義

資料庫的基準測試是對資料庫的效能指標進行定量的、可復現的、可對比的測試。

基準測試與壓力測試

基準測試可以理解為針對系統的一種壓力測試。但基準測試不關心業務邏輯,更加簡單、直接、易於測試,資料可以由工具生成,不要求真實;而壓力測試一般考慮業務邏輯(如購物車業務),要求真實的資料。

作用

分析在當前的配置下(包括硬體配置、OS、資料庫設定等),資料庫的效能表現,從而找出MySQL的效能閾值,並根據實際系統的要求調整配置。

重要指標

QPS:每秒查詢次數

TPS:每秒處理完成事務次數

RT:響應時間

QPS or TPS = 併發量 / 平均響應時間

併發量 = (QPS or TPS) * 平均響應時間

測試工具 sysbench

簡介

sysbench是跨平臺的基準測試工具,支援多執行緒,支援多種資料庫

安裝

參考github的readme,各系統不同,windows目前不支援。

(1)下載解壓

wget https://github.com/akopytov/sysbench/archive/1.0.zip -O "sysbench-1.0.zip"
unzip sysbench-1.0.zip
cd sysbench-1.0
複製程式碼

(2)安裝依賴 yum install automake libtool –y (3)安裝 安裝之前,確保位於之前解壓的sysbench目錄中。

./autogen.sh
./configure
export LD_LIBRARY_PATH=/usr/local/mysql/include #這裡換成機器中mysql路徑下的include
make
make install
複製程式碼

(4)安裝成功

sysbench --version
sysbench 1.0.9
複製程式碼

語法

基本語法 sysbench [options]... [testname] [command]

command

command是sysbench要執行的命令,包括prepare、run和cleanup,顧名思義,prepare是為測試提前準備資料,run是執行正式的測試,cleanup是在測試完成後對資料庫進行清理。

testname 測試指令碼

自帶測試指令碼

common.lua oltp.lua select.lua update_index.lua delete.lua oltp_simple.lua select_random_points.lua update_non_index.lua

oltp.lua是複雜型測試,支援事務,比較全面最常用。

接指定指令碼

sysbench--test=./tests/include/oltp_legacy/oltp.lua

新版本寫法

sysbench ./tests/include/oltp_legacy/oltp.lua

引數

指定資料庫型別

--db-driver: 指定資料路型別 mysql

mysql引數

--mysql-host:MySQL伺服器主機ip,預設localhost。

--mysql-port:MySQL伺服器埠,預設3306

--mysql-user:使用者名稱

--mysql-password:密碼

--mysql-engine-trx:指定不同的儲存引擎測試。

--mysql-db:指定其他資料庫(預設為sbtest需要手動建立)

oltp引數

--oltp-test-mode:執行模式,包括simple、nontrx和complex,預設是complex。simple模式下只測試簡單的查詢;nontrx不僅測試查詢,還測試插入更新等,但是不使用事務y;complex模式下測試最全面,會測試增刪改查,而且會使用事務。可以根據自己的需要選擇測試模式。

--oltp-tables-count:測試的表數量,根據實際情況選擇

--oltp-table-size:測試的表的行數,根據實際情況選擇

--threads:客戶端的併發連線數

--time:測試執行的時間,單位是秒,該值不要太短,可以選擇120

--report-interval:生成報告的時間間隔,單位是秒,如10

測試

準備工作

prepare 語句:

sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua --mysql-host=192.168.1.20 --mysql-port=3306 --mysql-user=root --mysql-password=Admin@123 --oltp-test-mode=complex --oltp-tables-count=10 --oltp-table-size=100000 --threads=10 --time=1200 --report-interval=10 --db-driver=mysql prepare
複製程式碼

我們可以在資料庫裝看到 sysbench建立的表結構:

CREATE TABLE `sbtest` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `k` int(10) unsigned NOT NULL DEFAULT '0',
  `c` char(120) NOT NULL DEFAULT '',
  `pad` char(60) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `k` (`k`));
複製程式碼

開始測試

sysbench
./tests/include/oltp_legacy/oltp.lua
--mysql-host=127.0.0.1 
--mysql-port=3306 
--mysql-user=root
--mysql-password=123456 
--oltp-test-mode=complex 
--oltp-tables-count=10
--oltp-table-size=100000
--threads=10
--time=120
--report-interval=10
--db-driver=mysql 
run >> /home/test/mysysbench.log ##指定日誌生成位置
複製程式碼

清除測試資料

防止影響之後測試

sysbench
./tests/include/oltp_legacy/oltp.lua
--mysql-host=127.0.0.1
--mysql-port=3306
--mysql-user=root
--mysql-password=123456
--db-driver=mysql 
cleanup
複製程式碼

日誌

[  10s] threads: 256, tps: 524.19, reads/s: 7697.05, writes/s: 2143.56, response time: 1879.46ms (99%)  
[  20s] threads: 256, tps: 96.50, reads/s: 1351.01, writes/s: 373.30, response time: 9853.49ms (99%)  
[  30s] threads: 256, tps: 235.50, reads/s: 3297.01, writes/s: 946.90, response time: 2150.47ms (99%)  
[  40s] threads: 256, tps: 115.50, reads/s: 1617.00, writes/s: 491.40, response time: 4562.75ms (99%)  
[  50s] threads: 256, tps: 262.10, reads/s: 3669.41, writes/s: 1016.10, response time: 2049.90ms (99%)  
[  60s] threads: 256, tps: 121.50, reads/s: 1701.00, writes/s: 499.10, response time: 3666.03ms (99%)  
[  70s] threads: 256, tps: 201.40, reads/s: 2735.10, writes/s: 769.50, response time: 3867.82ms (99%)  
[  80s] threads: 256, tps: 204.70, reads/s: 2950.29, writes/s: 838.10, response time: 2724.99ms (99%)  
[  90s] threads: 256, tps: 118.40, reads/s: 1657.61, writes/s: 490.00, response time: 3835.53ms (99%)  


OLTP test statistics:  
    queries performed:  
        read:                            8823206    -- 讀總數  
        write:                           2520916    -- 寫總數  
        other:                           1260458    -- 其他操作總數(SELECT、INSERT、UPDATE、DELETE之外的操作,例如COMMIT等)  
        total:                           12604580   -- 全部總數  
    transactions:                        630229 (174.94 per sec.)   -- 總事務數(每秒事務數)  
    deadlocks:                           0      (0.00 per sec.)     -- 發生死鎖總數  
    read/write requests:                 11344122 (3148.86 per sec.)    -- 讀寫總數(每秒讀寫次數)  
    other operations:                    1260458 (349.87 per sec.)  -- 其他操作總數(每秒其他操作次數)  


General statistics:     -- 一些統計結果         
    total time:                          3602.6152s -- 總耗時  
    total number of events:              630229     -- 共發生多少事務數  
    total time taken by event execution: 921887.7227s   -- 所有事務耗時相加(不考慮並行因素)  
    response time:                  -- 響應時間  
         min:                                  6.52ms   -- 最小耗時  
         avg:                               1462.78ms   -- 平均耗時  
         max:                               9918.51ms   -- 最長耗時  
         approx.  99 percentile:            3265.01ms   -- 超過99%平均耗時  


Threads fairness:               -- 執行緒的穩定性  
    events (avg/stddev):           2461.8320/34.60      -- 事件數(平均值/偏差)  
    execution time (avg/stddev):   3601.1239/0.63   -- 執行時間(平均值/偏差)
複製程式碼

優化

下載優化工具 mysqltuner

wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl -O mysqltuner.pl
複製程式碼

執行優化建議工具 # perl ./mysqltuner.pl

根據建議 修改mysql引數 # vim /etc/my.cnf

注意

新版本需要指定資料庫型別--mysql-db。
如果連續進行多次測試,注意確保之前測試的資料已經被清理乾淨。
複製程式碼

相關文章