數據庫基準測試工具 sysbench

基準測試

定義

數據庫的基準測試是對數據庫的性能指標進行定量的、可復現的、可對比的測試。mysql

基準測試與壓力測試

基準測試能夠理解爲針對系統的一種壓力測試。但基準測試不關心業務邏輯,更加簡單、直接、易於測試,數據能夠由工具生成,不要求真實;而壓力測試通常考慮業務邏輯(如購物車業務),要求真實的數據。git

做用

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

重要指標

QPS:每秒查詢次數sql

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

RT:響應時間數據庫

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

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

測試工具 sysbench

簡介

sysbench是跨平臺的基準測試工具,支持多線程,支持多種數據庫bash

安裝

參考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。
若是連續進行屢次測試,注意確保以前測試的數據已經被清理乾淨。
複製代碼
相關文章
相關標籤/搜索