白天和黑夜只交替没交换无法想像对方的世界
分类: linux
2014-02-26 18:23:25
sysbench是一个开源的、模块化的、跨平台的多线程性能测试工具,可以用来进行cpu、内存、磁盘i/o、线程、数据库的性能测试。目前支持的数据库有mysql、oracle和postgresql。以下操作都将以支持mysql数据库为例进行。
默认支持mysql,如果需要测试oracle/postgresql,则在configure时需要加上–with-oracle或者–with-pgsql参数.
centos release 6.3 (final)
mysql 5.6.13
mysql_home=/usr/local/mysql/
sysbench 0.4.12
# wget
# tar –zxvf sysbench-0.4.12.tar.gz
进入解压缩包sysbench-0.4.12,并执行脚本autogen.sh
# cd sysbench-0.4.12
# ./autogen.sh
关键的三步:configure && make && make install
首先是./configure命令,sysbench默认是支持mysql的benchmarking的,如果不加任何选项则要求保证mysql的安装路径都是默认的标准路径,headfile位于/usr/include目录下,libraries位于/usr/lib/目录下。因为我的mysql是源码编译安装的,安装路径是放在/usr/local/mysql下,所以这里要添加相应的选项命令:
# ./configure --prefix=/usr/local/sysbench --with-mysql=/usr/local/mysql \
--with-mysql-includes=/usr/local/mysql/include/mysql/ \
--with-mysql-libs=/usr/local/mysql/lib/mysql/
注意:这里在编译时要将路径写到最后的include/mysql及lib/mysql,如下所示:
–with-mysql-includes=/usr/local/mysql/include/mysql/
--with-mysql-libs=/usr/local/mysql/lib/mysql/
因为网上好多资料都没有提到这一层,在编译时总是编译不过去,这里浪费了好多精力。
接下来执行如下命令:
# make && make install
如果觉得源码安装麻烦,也可以采用yum安装,操作如下:
# yum install -y sysbench
首先,看看sysbench都支持哪些功能参数:
[root@db-master sysbench]# sysbench --help
usage:
sysbench [general-options]...
--test=
general options:
--num-threads=n number of threads to use [1]
--max-requests=n limit for total number of requests [10000]
--max-time=n limit for total execution time in seconds [0]
--forced-shutdown=string amount of time to wait after --max-time before forcing shutdown [off]
--thread-stack-size=size size of stack per thread [32k]
--init-rng=[on|off] initialize random number generator [off]
--test=string test to run
--debug=[on|off] print more debugging info [off]
--validate=[on|off] perform validation checks where possible [off]
--help=[on|off] print help and exit
--version=[on|off] print version and exit
compiled-in tests:
fileio - file i/o test
cpu - cpu performance test
memory - memory functions speed test
threads - threads subsystem performance test
mutex - mutex performance test
oltp - oltp test
commands: prepare run cleanup help version
see 'sysbench
--test=
sysbench的测试主要包括以下几个方面:
1、磁盘io性能
2、cpu性能
3、内存分配及传输速度
4、posix线程性能
5、调度程序性能
6、数据库性能(oltp基准测试).
[root@db-master ~]# sysbench --test=fileio help
sysbench 0.4.12: multi-threaded system evaluation benchmark
fileio options:
--file-num=n number of files to create [128]
--file-block-size=n block size to use in all io operations [16384]
--file-total-size=size total size of files to create [2g]
--file-test-mode=string test mode {seqwr, seqrewr, seqrd, rndrd, rndwr, rndrw}
--file-io-mode=string file operations mode {sync,async,fastmmap,slowmmap} [sync]
--file-async-backlog=n number of asynchronous operatons to queue per thread [128]
--file-extra-flags=string additional flags to use on opening files {sync,dsync,direct} []
--file-fsync-freq=n do fsync() after this number of requests (0 - don't use fsync()) [100]
--file-fsync-all=[on|off] do fsync() after each write operation [off]
--file-fsync-end=[on|off] do fsync() at the end of test [on]
--file-fsync-mode=string which method to use for synchronization {fsync, fdatasync} [fsync]
--file-merged-requests=n merge at most this number of io requests if possible (0 - don't merge) [0]
--file-rw-ratio=n reads/writes ratio for combined test [1.5]
参数详解:
--file-num=n 代表生成测试文件的数量,默认为128。
--file-block-size=n 测试时所使用文件块的大小,如果想磁盘针对innodb存储引擎进行测试,可以将其设置为16384,即innodb存储引擎页的大小。默认为16384。
--file-total-size=size 创建测试文件的总大小,默认为2g大小。
--file-test-mode=string文件测试模式,包含:seqwr(顺序写), seqrewr(顺序读写), seqrd(顺序读), rndrd(随机读), rndwr(随机写), rndrw(随机读写)。
--file-io-mode=string 文件操作的模式,sync(同步),async(异步),fastmmap(快速mmap),slowmmap(慢速mmap),默认为sync同步模式。
--file-async-backlog=n 对应每个线程队列的异步操作数,默认为128。
--file-extra-flags=string打开文件时的选项,这是与api相关的参数。
--file-fsync-freq=n 执行fsync()函数的频率。fsync主要是同步磁盘文件,因为可能有系统和磁盘缓冲的关系。 0代表不使用fsync函数。默认值为100。
--file-fsync-all=[on|off] 每执行完一次写操作,就执行一次fsync。默认为off。
--file-fsync-end=[on|off]在测试结束时执行fsync函数。默认为on。
--file-fsync-mode=string文件同步函数的选择,同样是和api相关的参数,由于多个操作系统对于fdatasync支持不同,因此不建议使用fdatasync。默认为fsync。
--file-merged-requests=n大多情况下,合并可能的io的请求数,默认为0。
--file-rw-ratio=n 测试时的读写比例,默认时为1.5,即可3:2。
[root@db-master ~]# sysbench --test=cpu help
sysbench 0.4.12: multi-threaded system evaluation benchmark
cpu options:
--cpu-max-prime=n upper limit for primes generator [10000]
参数详解:
--cpu-max-prime=n 用来选项指定最大的素数,具体参数可以根据cpu的性能来设置,默认为10000
[root@db-master ~]# sysbench --test=memory help
sysbench 0.4.12: multi-threaded system evaluation benchmark
memory options:
--memory-block-size=size size of memory block for test [1k]
--memory-total-size=size total size of data to transfer [100g]
--memory-scope=string memory access scope {global,local} [global]
--memory-hugetlb=[on|off] allocate memory from hugetlb pool [off]
--memory-oper=string type of memory operations {read, write, none} [write]
--memory-access-mode=string memory access mode {seq,rnd} [seq]
参数详解:
--memory-block-size=size 测试内存块的大小,默认为1k
--memory-total-size=size 数据传输的总大小,默认为100g
--memory-scope=string 内存访问的范围,包括全局和本地范围,默认为global
--memory-hugetlb=[on|off] 是否从hugetlb池分配内存的开关,默认为off
--memory-oper=string 内存操作的类型,包括read, write, none,默认为write
--memory-access-mode=string 内存访问模式,包括seq,rnd两种模式,默认为seq
[root@db-master ~]# sysbench --test=threads help
sysbench 0.4.12: multi-threaded system evaluation benchmark
threads options:
--thread-yields=n number of yields to do per request [1000]
--thread-locks=n number of locks per thread [8]
参数详解:
--thread-yields=n 指定每个请求的压力,默认为1000
--thread-locks=n 指定每个线程的锁数量,默认为8
[root@db-master ~]# sysbench --test=mutex help
sysbench 0.4.12: multi-threaded system evaluation benchmark
mutex options:
--mutex-num=n total size of mutex array [4096]
--mutex-locks=n number of mutex locks to do per thread [50000]
--mutex-loops=n number of empty loops to do inside mutex lock [10000]
参数详解:
--mutex-num=n 数组互斥的总大小。默认是4096
--mutex-locks=n 每个线程互斥锁的数量。默认是50000
--mutex-loops=n 内部互斥锁的空循环数量。默认是10000
[root@db-master ~]# sysbench --test=oltp help
sysbench 0.4.12: multi-threaded system evaluation benchmark
oltp options:
--oltp-test-mode=string test type to use {simple,complex,nontrx,sp} [complex]
--oltp-reconnect-mode=string reconnect mode {session,transaction,query,random} [session]
--oltp-sp-name=string name of store procedure to call in sp test mode []
--oltp-read-only=[on|off] generate only 'read' queries (do not modify database) [off]
--oltp-skip-trx=[on|off] skip begin/commit statements [off]
--oltp-range-size=n range size for range queries [100]
--oltp-point-selects=n number of point selects [10]
--oltp-simple-ranges=n number of simple ranges [1]
--oltp-sum-ranges=n number of sum ranges [1]
--oltp-order-ranges=n number of ordered ranges [1]
--oltp-distinct-ranges=n number of distinct ranges [1]
--oltp-index-updates=n number of index update [1]
--oltp-non-index-updates=n number of non-index updates [1]
--oltp-nontrx-mode=string mode for non-transactional test {select, update_key, update_nokey, insert, delete} [select]
--oltp-auto-inc=[on|off] whether auto_increment (or equivalent) should be used on id column [on]
--oltp-connect-delay=n time in microseconds to sleep after connection to database [10000]
--oltp-user-delay-min=n minimum time in microseconds to sleep after each request [0]
--oltp-user-delay-max=n maximum time in microseconds to sleep after each request [0]
--oltp-table-name=string name of test table [sbtest]
--oltp-table-size=n number of records in test table [10000]
--oltp-dist-type=string random numbers distribution {uniform,gaussian,special} [special]
--oltp-dist-iter=n number of iterations used for numbers generation [12]
--oltp-dist-pct=n percentage of values to be treated as 'special' (for special distribution) [1]
--oltp-dist-res=n percentage of 'special' values to use (for special distribution) [75]
general database options:
--db-driver=string specifies database driver to use ('help' to get list of available drivers)
--db-ps-mode=string prepared statements usage mode {auto, disable} [auto]
compiled-in database drivers:
mysql - mysql driver
pgsql - postgresql driver
mysql options:
--mysql-host=[list,...] mysql server host [localhost]
--mysql-port=n mysql server port [3306]
--mysql-socket=string mysql socket
--mysql-user=string mysql user [sbtest]
--mysql-password=string mysql password []
--mysql-db=string mysql database name [sbtest]
--mysql-table-engine=string storage engine to use for the test table {myisam,innodb,bdb,heap,ndbcluster,federated} [innodb]
--mysql-engine-trx=string whether storage engine used is transactional or not {yes,no,auto} [auto]
--mysql-ssl=[on|off] use ssl connections, if available in the client library [off]
--myisam-max-rows=n max-rows parameter for myisam tables [1000000]
--mysql-create-options=string additional options passed to create table []
pgsql options:
--pgsql-host=string postgresql server host [localhost]
--pgsql-port=n postgresql server port [5432]
--pgsql-user=string postgresql user [sbtest]
--pgsql-password=string postgresql password []
--pgsql-db=string postgresql database name [sbtest]
参数详解:
--oltp-test-mode=string 执行模式{simple,complex(advanced transactional),nontrx(non-transactional),sp}。默认是complex
--oltp-reconnect-mode=string 重新连接模式{session(不使用重新连接。每个线程断开只在测试结束),transaction(在每次事务结束后重新连接),query(在每个sql语句执行完重新连接),random(对于每个事务随机选择以上重新连接模式)}。默认是session
--oltp-sp-name=string 存储过程的名称。默认为空
--oltp-read-only=[on|off] 只读模式。update,delete,insert语句不可执行。默认是off
--oltp-skip-trx=[on|off] 省略begin/commit语句。默认是off
--oltp-range-size=n 查询范围。默认是100
--oltp-point-selects=n number of point selects [10]
--oltp-simple-ranges=n number of simple ranges [1]
--oltp-sum-ranges=n number of sum ranges [1]
--oltp-order-ranges=n number of ordered ranges [1]
--oltp-distinct-ranges=n number of distinct ranges [1]
--oltp-index-updates=n number of index update [1]
--oltp-non-index-updates=n number of non-index updates [1]
--oltp-nontrx-mode=string 查询类型对于非事务执行模式{select, update_key, update_nokey, insert, delete} [select]
--oltp-auto-inc=[on|off] auto_increment是否开启。默认是on
--oltp-connect-delay=n 在多少微秒后连接数据库。默认是10000
--oltp-user-delay-min=n 每个请求最短等待时间。单位是ms。默认是0
--oltp-user-delay-max=n 每个请求最长等待时间。单位是ms。默认是0
--oltp-table-name=string 测试时使用到的表名。默认是sbtest
--oltp-table-size=n 测试表的记录数。默认是10000
--oltp-dist-type=string 分布的随机数{uniform(均匀分布),gaussian(高斯分布),special(空间分布)}。默认是special
--oltp-dist-iter=n 产生数的迭代次数。默认是12
--oltp-dist-pct=n 值的百分比被视为'special' (for special distribution)。默认是1
--oltp-dist-res=n ‘special’的百分比值。默认是75
以上就是sysbench工具的安装配置及相关选项参数的介绍,可以根据自己的需要添加对应的参数进行压力测试即可。在下一篇文档中将会对上面的几种模式进行相应的测试。