亚平宁的眼泪
发布于

oushudb sysbench测试结果

@TOC

简介

sysbench 是一个开源的、模块化的、跨平台的多线程性能测试工具,可以用来进行 CPU、内存、磁盘 I/O、线程、数据库的性能测试。 是一个基于 LuaJIT 的可编写多线程基准测试工具。它最常用于数据库基准测试,本文将介绍 oushudb 基于此工具的测试结果。

编译

  1. cd /data4/sysbench
  2. ./autogen.sh
  3. ./configure --prefix=/usr/local/pgsysbench/ --without-mysql --with-pgsql --with-pgsql-includes=/usr/pgsql-12.2/include --with-pgsql-libs=/usr/pgsql-12.2/lib
  4. make && sudo make install

测试步骤

(eg:测试 oltp_read_write.lua,其他 workload 项与步骤示例相同)

  1. Prepare
/usr/local/pgsysbench/bin/sysbench /data4/sysbench/src/lua/oltp_read_write.lua --db-driver=pgsql --pgsql-host=127.0.0.1 --pgsql-port=5532 --pgsql-user=postgres --pgsql-password=postgres --pgsql-db=postgres --tables=10 --table-size=1000000 --threads=50 --time=120 --events=0 --report-interval=10 --percentile=99 prepare >~/sysbench_prepare.log
  1. 2.Run
/usr/local/pgsysbench/bin/sysbench /data4/sysbench/src/lua/oltp_read_write.lua --db-driver=pgsql --pgsql-host=127.0.0.1 --pgsql-port=5532 --pgsql-user=postgres --pgsql-password=postgres --pgsql-db=postgres --tables=10 --table-size=1000000 --threads=50 --time=120 --events=0 --report-interval=10 --percentile=99 run >~/sysbench_run.log

在这里插入图片描述

  1. Cleanup
/usr/local/pgsysbench/bin/sysbench /data4/sysbench/src/lua/oltp_read_write.lua --db-driver=pgsql --pgsql-host=127.0.0.1 --pgsql-port=5532 --pgsql-user=postgres --pgsql-password=postgres --pgsql-db=postgres --tables=10 --table-size=1000000 --threads=50 --time=120 --events=0 --report-interval=10 --percentile=99 cleanup >~/sysbench_cleanup.log

测试结果

注:tables: 10 #row: 100w 100 并发

workload events/s(eps) time elapsed total number of envents
oltp_delete.lua 555517.1546 600.0133s 333317675
oltp_insert.lua 74141.944 600.0826s 44491289
oltp_update_index.lua 89695.0965 600.0275s 53819522
oltp_point_select.lua 609251.3645 600.0247s 365565867
oltp_read_write.lua 11601.7039 600.0279s 6961346
评论
    test