一、介紹
- SysBench 是一款開源的、跨平臺的、模塊化的、多線程的性能測試工具, 可以執行 CPU/內存/線程/IO/數據庫 等方面的性能測試
二、安裝 sysbench
- yum -y install sysbench
- 安裝完sysbench后,/usr/share/sysbench下對數據庫壓力測試的lua文件
- lua腳本說明
1、 bulk_insert.lua 批量寫入操作 2、 oltp_common.lua oltp公用代碼 3、 oltp_delete.lua 寫入和刪除并行操作 4、 oltp_insert.lua 純寫入操作 5、 oltp_point_select.lua 只讀操作,條件為唯一索引列 6、 oltp_read_only.lua 只讀操作,包含聚合,去重等操作 7、 oltp_read_write.lua 讀寫混合操作,最常用的腳本 8、 oltp_update_index.lua 更新操作,通過主鍵進行更新 9、 oltp_update_non_index.lua 更新操作,不通過索引列 10、 oltp_write_only.lua 純寫操作,常用腳本,包括insert update delete 11、 select_random_points.lua 隨機集合只讀操作,常用腳本,聚集索引列的selete in操作 12、 select_random_ranges.lua 隨機范圍只讀操作,常用腳本,聚集索引列的selete between操作
- 參數說明
-–db-driver:用到的數據庫類型 -–MySQL-host:數據庫的IP -–mysql-port:數據庫的端口 -–mysql-socket:socket的路徑 -–mysql-user:數據庫用戶名 -–mysql-password:用戶密碼 -–mysql-db:數據庫名字,默認為sysbench,需要提前創建創好 -–tables:生成表的個數 -–table-size:每個表的行數 -–report-interval:每隔多久在屏幕打印一次信息 -–time:壓測時間 -–threads:啟動多少個線程,即模擬多少個用戶
- 幫助命令 sysbench /usr/share/sysbench/oltpreadwrite.lua help
oltp_read_write.lua options: --auto_inc[=on|off] Use AUTO_INCREMENT column as Primary Key (for MySQL), or its alternatives in other DBMS. When disabled, use client-generated IDs [on] --create_secondary[=on|off] Create a secondary index in addition to the PRIMARY KEY [on] --delete_inserts=N Number of DELETE/INSERT combinations per transaction [1] --distinct_ranges=N Number of SELECT DISTINCT queries per transaction [1] --index_updates=N Number of UPDATE index queries per transaction [1] --mysql_storage_engine=STRING Storage engine, if MySQL is used [innodb] --non_index_updates=N Number of UPDATE non-index queries per transaction [1] --order_ranges=N Number of SELECT ORDER BY queries per transaction [1] --pgsql_variant=STRING Use this PostgreSQL variant when running with the PostgreSQL driver. The only currently supported variant is 'redshift'. When enabled, create_secondary is automatically disabled, and delete_inserts is set to 0 --point_selects=N Number of point SELECT queries per transaction [10] --range_selects[=on|off] Enable/disable all range SELECT queries [on] --range_size=N Range size for range SELECT queries [100] --secondary[=on|off] Use a secondary index in place of the PRIMARY KEY [off] --simple_ranges=N Number of simple range SELECT queries per transaction [1] --skip_trx[=on|off] Don't start explicit transactions and execute all queries in the AUTOCOMMIT mode [off] --sum_ranges=N Number of SELECT SUM() queries per transaction [1] --table_size=N Number of rows per table [10000] --tables=N Number of tables [1]
數據庫壓力測試通常三個階段,準備數據、壓測數據、清理數據
- 第一階段數據準備
mysql -uroot -p123 -e "create database sbtest;" -- 創建測試數據庫 sysbench /usr/share/sysbench/oltp_read_write.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password='test' --mysql-socket=/data/mysql/mysql.sock --mysql-db=sbtest --db-driver=mysql --tables=10 --table-size=50000 --threads=4 prepare
登錄數據庫檢查生成表和數據情況
- 第二階段數據運行測試
情況1:查詢 sysbench /usr/share/sysbench/oltp_read_write.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password='test' --mysql-socket=/data/mysql/mysql.sock --mysql-db=sbtest --db-driver=mysql --tables=10 --table-size=50000 --report-interval=10 --threads=128 --time=600 ru
備注:重要指標
QPS(Query per second) 每秒查詢量:21021.78
TPS(Transaction per second)每秒事務量 1052.19
情況2: 在每個查詢的事物里面添加 INSERT/UPDATE/DELDETE 操作 sysbench /usr/share/sysbench/oltp_read_write.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password='test' --mysql-socket=/data/mysql/mysql.sock --mysql-db=sbtest --db-driver=mysql --tables=10 --table-size=50000 --delete_inserts=10 --index_updates=10 --non_index_updates=10 --report-interval=10 --threads=4 --time=60 run
- 第三階段刪除測試數據
sysbench /usr/share/sysbench/oltp_read_write.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password='test' --mysql-socket=/data/mysql/mysql.sock --mysql-db=sbtest --db-driver=mysql --tables=10 --table-size=50000 --delete_inserts=10 --index_updates=10 --non_index_updates=10 --report-interval=10 --threads=4 --time=60 cleanup
- 注一個錯誤處理(修改自己安裝mysql對應socket文件)