下文給大家?guī)?lái)關(guān)于使用sysbench測(cè)試MySQL性能的操作步驟,感興趣的話就一起來(lái)看看這篇文章吧,相信看完使用sysbench測(cè)試mysql性能的操作步驟對(duì)大家多少有點(diǎn)幫助吧。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比天山網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式天山網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋天山地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。
sysbench測(cè)試mysql性能:
安裝sysbench 1.0:
apt-get install bzr automake libtool libmysqlclient-dev pkg-config unzip
ln -s /usr/lib/x86_64-linux-gnu/libmysqlclient.so.20.3.14 /usr/lib/libmysqlclient_r.so
wget https://github.com/akopytov/sysbench/archive/1.0.zip -O "sysbench-1.0.zip"
unzip sysbench-1.0.zip
cd sysbench-1.0
./autogen.sh
./configure
make && make install
1.0的oltp.lua路徑為--test=./sysbench-1.0/tests/include/oltp_legacy/oltp.lua
file I/O performance (文件I/O性能)
scheduler performance (調(diào)度性能)
memory allocation and transfer speed (內(nèi)存分配和傳輸速度)
POSIX threads implementation performance (POSIX線程執(zhí)行績(jī)效)
database server performance (OLTP benchmark)(數(shù)據(jù)庫(kù)服務(wù)器性能)
測(cè)試CPU:
/usr/local/bin/sysbench --test=cpu --cpu-max-prime=2000 --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx run
測(cè)試線程:
/usr/local/bin/sysbench --test=threads --threads=500 --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx run
測(cè)試IO:
準(zhǔn)備:
/usr/local/bin/sysbench --test=fileio --file-total-size=2G --file-test-mode=rndrw --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx prepare
測(cè)試:
/usr/local/bin/sysbench --test=fileio --file-total-size=2G --file-test-mode=rndrw --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx run
清理:
/usr/local/bin/sysbench --test=fileio --file-total-size=2G --file-test-mode=rndrw --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx cleanup
測(cè)試內(nèi)存:
/usr/local/bin/sysbench --test=memory --memory-block-size=8k --memory-total-size=1G --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx run
測(cè)試mutex(互斥性能測(cè)試):
/usr/local/bin/sysbench --test=mutex --num-threads=100 --mutex-num=100 --mutex-locks=100000 --mutex-loops=10000 --mysql-host=10.0.1.5 --mysql-db=ming --mysql-user=ming --mysql-password=xxxxx run
測(cè)試OLTP(數(shù)據(jù)庫(kù)服務(wù)器性能):
準(zhǔn)備:
/usr/local/bin/sysbench --test=./sysbench-1.0/tests/include/oltp_legacy/oltp.lua --mysql-table-engine=innodb --mysql-host=10.0.1.5 --mysql-db=ming --oltp-table-size=500000 --oltp-test-mode=complex --oltp-table-size=10 --threads=10 --mysql-user=ming --mysql-password=xxxxx prepare
只讀測(cè)試:
/usr/local/bin/sysbench --test=./sysbench-1.0/tests/include/oltp_legacy/oltp_simple.lua --mysql-table-engine=innodb --mysql-host=10.0.1.5 --mysql-db=ming --oltp-table-size=500000 --oltp-test-mode=simple --oltp-table-size=10 --threads=10 --mysql-user=ming --mysql-password=xxxx run
讀寫混合測(cè)試:
/usr/local/bin/sysbench --test=./sysbench-1.0/tests/include/oltp_legacy/oltp.lua --mysql-table-engine=innodb --mysql-host=10.0.1.5 --mysql-db=ming --oltp-table-size=500000 --oltp-test-mode=complex --oltp-table-size=10 --threads=10 --mysql-user=ming --mysql-password=xxxx run
清理:
/usr/local/bin/sysbench --test=./sysbench-1.0/tests/include/oltp_legacy/oltp.lua --mysql-table-engine=innodb --mysql-host=10.0.1.5 --mysql-db=ming --oltp-table-size=500000 --oltp-test-mode=complex --oltp-table-size=10 --threads=10 --mysql-user=ming --mysql-password=xxxx cleanup
看了以上關(guān)于使用sysbench測(cè)試mysql性能的操作步驟詳細(xì)內(nèi)容,是否有所收獲。如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。
本文題目:使用sysbench測(cè)試mysql性能的操作步驟
文章位置:
http://weahome.cn/article/pdhdcp.html