您好,登錄后才能下訂單哦!
sysbench簡(jiǎn)介
該工具目前有三個(gè)版本0.4, 0.5和1.0, 版本間語(yǔ)法和參數(shù)上有些許差別. 本文為最新版本1.0.9, 其是基于LuaJIT的多線程基準(zhǔn)測(cè)試工具, 常用于數(shù)據(jù)庫(kù)基準(zhǔn)測(cè)試; 另, 還可對(duì)操作系統(tǒng)關(guān)鍵子系統(tǒng)進(jìn)行測(cè)試. 除內(nèi)建測(cè)試, 還可編寫(xiě)Lua腳本, 實(shí)現(xiàn)特定業(yè)務(wù)的測(cè)試.
sysbench下載
鏈接, https://github.com/akopytov/sysbench
安裝依賴環(huán)境
1. yum -y install make automake libtool pkgconfig libaio-devel vim-common
2. 設(shè)置從何處加載MySQL數(shù)據(jù)庫(kù)的客戶端庫(kù)文件.
[root@db01 ~]# cat /etc/ld.so.conf.d/mysql.conf
/opt/mysql/lib
[root@db01 ~]# ldconfig
[root@db01 ~]# ldconfig --print-cache | grep 'mysql'
libmysqlclient.so.18 (libc6,x86-64) => /opt/mysql/lib/libmysqlclient.so.18
安裝
1. [root@db01 sysbench-1.0.9]# ./autogen.sh
[root@db01 sysbench-1.0.9]# ./configure --prefix=/usr/local/sysbench-1.0.9
[root@db01 sysbench-1.0.9]# make -j 4
[root@db01 sysbench-1.0.9]# make install
2. 將命令sysbench的路徑寫(xiě)入環(huán)境變量PATH中.
[root@db01 ~]# grep 'PATH' .bash_profile
PATH=/usr/local/sysbench-1.0.9/bin:/opt/mysql/bin:$PATH:$HOME/bin
export PATH
[root@db01 ~]# source .bash_profile
3. 查看命令sysbench使用的MySQL數(shù)據(jù)庫(kù)的客戶端庫(kù)文件.
[root@db01 ~]# ldd /usr/local/sysbench-1.0.9/bin/sysbench | grep 'mysql'
libmysqlclient.so.18 => /opt/mysql/lib/libmysqlclient.so.18 (0x00007f4376099000)
下面分別是fileio和oltp的測(cè)試實(shí)例.
1. [root@db01 sysbench_test]# sysbench fileio --file-num=4 --file-block-size=16384 --file-total-size=100G --file-test-mode=rndrd --file-extra-flags=direct --threads=16 --events=0 --time=14400 --report-interval=4 --verbosity=3 [prepare | run | cleanup]
2. [root@db01 sysbench_test]# sysbench /usr/local/sysbench-1.0.9/share/sysbench/oltp_insert.lua --auto_inc=on --tables=10 --mysql_storage_engine=innodb --table_size=5000000 --threads=16 --events=0 --time=14400 --report-interval=4 --verbosity=3 --mysql-host=localhost --mysql-port=3306 --mysql-socket=/data/3306/mysql.sock --mysql-user=root --mysql-password=123456 --mysql-db=sbtest [prepare | run | cleanup]
若感興趣可關(guān)注訂閱號(hào)”數(shù)據(jù)庫(kù)最佳實(shí)踐”(DBBestPractice).
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。