sysbench 1.0.9 安装使用记录

sysbench可以执行多种类型的基准测试,它不仅设计用来测试数据库的性能,也可以测试运行数据库的服务器的性能。官网:https://github.com/akopytov/sysbench

安装

github上有各个系统的详细的安装教程,因为我用的是Centos,这里就只说下Centos的安装

安装前准备工作

yum -y install make automake libtool pkgconfig libaio-devel
//对于MySQL支持,在RHEL / CentOS 5上用mysql-devel替换
yum -y install mariadb-devel openssl-devel
//对于PostgreSQL支持 
yum -y install postgresql-devel

安装sysbench(rpm形式)

sudo yum -y install sysbench

这里没有用编译源码的方式安装,仅仅是因为方便不用去编译

安装sysbench(源码编译形式)

    ./autogen.sh
    //Add --with-pgsql to build with PostgreSQL support
    ./configure
    make -j
    make install

注意:以上将默认使用MySQL支持构建sysbench。如果您在非标准位置具有MySQL标头和库(并且 mysql_config在其中找不到PATH),则可以使用--with-mysql-includes和--with-mysql-libs选项明确指定它们./configure。

要编译没有MySQL支持的sysbench,请使用--without-mysql。如果没有可用的数据库驱动程序,则与数据库相关的脚本将不起作用,但其他基准测试将起作用。

检查安装是否成功

sysbench --version

显示 sysbench 1.0.9

语法

sysbench [options]... [testname] [command]

测试Mysql

准备数据

sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua 
--mysql-host=127.0.0.1 
--mysql-port=3306 
--mysql-user=root 
--mysql-password=root 
--mysql-db=test 
--db-driver=mysql 
--oltp-test-mode=complex //执行模式 
--oltp-tables-count=10 //生成表的数量
--oltp-table-size=10000 //每张表的数据条数
--threads=10 //客户端的并发线程数
--time=120 //执行时间为120秒
--report-interval=10 //每10秒生成一次报告 
prepare

这里为了看起来直观使用了换行,粘贴时注意去掉换行符
这里指定了sysbench自带的oltp脚本/usr/share/sysbench/tests/include/oltp_legacy/oltp.lua
如果你在执行时提示未找到脚本的话,可以通过下面这行指令找到它的全路径。

find / -name oltp.lua -print

执行测试

sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua 
--mysql-host=127.0.0.1 
--mysql-port=3306 
--mysql-user=root 
--mysql-password=root 
--mysql-db=test 
--db-driver=mysql 
--oltp-test-mode=complex //执行模式 
--oltp-tables-count=10 //生成表的数量
--oltp-table-size=10000 //每张表的数据条数
--threads=10 //客户端的并发线程数
--time=120 //执行时间为120秒
--report-interval=10 //每10秒生成一次报告 
run >> sysbench.log  //将日志输出到文件

清除数据

sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua 
--mysql-host=127.0.0.1 
--mysql-port=3306 
--mysql-user=root 
--mysql-password=root 
--mysql-db=test 
--db-driver=mysql 
--oltp-tables-count=10 
cleanup

测试建议

  1. 测试前先确定测试策略:一是针对整个系统的整体测试,二是单独测试MySQL。

  2. 测试何种指标:
    请考虑以下指标,看看如何满足测试的需求:
    吞吐量 响应时间或延迟 并发性 可扩展性

  3. 基准测试要进行多次才有意义。

  4. 测试时需要注意主从同步的状态。

  5. 测试必须模拟多线程的情况,单线程情况不但无法模拟真实的效率,也无法模拟阻塞甚至死锁情况

你可能感兴趣的:(sysbench 1.0.9 安装使用记录)