sysbench安裝及簡單使用

一、https://github.com/akopytov/sysbench#rhelcentos獲取mysql

或是git

wget https://github.com/akopytov/sysbench/archive/master.zip

二、解壓github

unzip master.zip

三、編譯安裝sql

確保已經安裝了相關的依賴vim

yum -y install  make automake libtool pkgconfig libaio-devel vim-common

 

./autogen.sh
./configure
make -j
make install

四、測試是否成功安裝centos

sysbench --version

 

安裝完成會自帶幾個lua腳本文件,路徑在/usr/local/share/sysbench 或 /usr/share/sysbench/tests/include/oltp_legacy下app

 

 

壓測模型 描述
bulk_inert.lua 批量插入數據
insert.lua 單值插入數據
delete.lua 刪除數據
oltp.lua 混合讀寫測試,讀寫比例14:4
select.lua 簡單的主鍵查詢

 

一、數據準備測試

sysbench /usr/local/share/sysbench/oltp_write_only.lua --table-size=1000000 --tables=10 --threads=32 --db-driver=mysql --mysql-db=sysbench --mysql-host=127.0.0.1 --mysql-user=root --mysql-password=root prepare

二、進行測試write_only,並將測試結果導出到文件中,便於後續分析。ui

sysbench /usr/local/share/sysbench/oltp_write_only.lua --table-size=1000000 --tables=10 --threads=32 --db-driver=mysql --mysql-db=sysbench --mysql-host=127.0.0.1 --mysql-user=root --mysql-password=root run > test.log

三、清除數據lua

sysbench /usr/local/share/sysbench/oltp_write_only.lua --table-size=1000000 --tables=10 --threads=32 --db-driver=mysql --mysql-db=sysbench --mysql-host=127.0.0.1 --mysql-user=root --mysql-password=root cleanup
相關文章
相關標籤/搜索