Sysbench

Sysbench 测试详解

sysbench压力测试工具简介:

sysbench是一个开源的、模块化的、跨平台的多线程性能测试工具,可以用来进行CPU、内存、磁盘I/O、线程、数据库的性能测试。目前支持的数据库有MySQL、Oracle和PostgreSQL。以下操作都将以支持MySQL数据库为例进行。

sysbench的测试可运用:

  • CPU性能
  • 磁盘IO性能
  • 调动程序性能
  • 内存分配及传输速度
  • POSIX线程性能
  • 数据库性能

安装根据自己需求查

Sysbench 支持的功能参数、

首先,看看sysbench都支持哪些功能参数:

[root@db-master sysbench]# sysbench –help

Usage:

sysbench [general-options]… –test= [test-options]… command

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= help’ for a list of options for each test.

2.1 测试fileio命令帮助:

[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。

基本格式

sysbench的基本命令格式为:

sysbench –test=< test-name> [options]… < command>

主要分为三个部分:

1、–test=< test-name> 这部分是指定测试类型,基本类型有fileiocpumemorythreadsmutexoltp(或者指定lua脚本)

2、[options]… 这部分包括测试需要的各种选项,有全局的也有每个测试模式自由的选项 (每个测试模式的选项可以用./sysbench –test=< test-name> help来获取)

3、< command> 控制命令,总共有五个

  • prepare #准备测试,主要是生成测试数据
  • run #执行测试,根据选项限制来执行测试
  • cleanup #清除准备阶段生成的测试数据
  • help #获取帮助文档
  • version #获取版本信息

    使用示例

  • cpu测试
sysbench --test=cpu --cpu-max-prime=20000 --num-threads=2 run
  • fileio测试
    • 1.创建fileio 初始化
sysbench --test=fileio --file-num-num=16 --file-total-size=2G prepare

2.开始fileio测试

接下来开始对这些文件进行测试,使用16个线程随机读取进行测试结果如下:

sysbench --test=fileio --file-total-size=2G --file-test-mode=rndrd --max-time=180 --max-requests=100000000 --num-threads=16 --init-rng=on --file-num=16 --file-extra-flags=direct --file-fsync-freq=0 --file-block-size=16384 run

3.测试完成执行cleanup

sysbench --test=fileio --file-num=16 --file-total-size=2G cleanup

ps:测试文件大小最好大于内存,确保文件缓存不会过多影响测试

  • 测试内存负载
sysbench --test=memory --num-threads=4 run