git clone https://github.com/akopytov/sysbench.gitgit checkout 1.0.20yum install gcc gcc-c++ autoconf automake make libtool bzr mysql-devel git mysqlcd sysbench./autogen.sh./configuremake -jmake install
Type | Description |
Test instance specification | Three common specifications, namely, 4-core CPU and 8 GB memory, 8-core CPU and 32 GB memory, and 16-core CPU and 128 GB memory |
Client configuration | 64-core CPU and 128 GB memory |
Client private network bandwidth | 23 Gbps |
Test data volume | Database instance memory * 1.2 |
Test database instance versions | 5.6 20210630, 5.7 20210630, and 8.0 20210330 |
sysbench --db-driver=mysql --mysql-host=xxxx --mysql-port=xxxx --mysql-user=xxxx --mysql-password=xxxx --mysql-db=sbtest --table_size=xxxx --tables=xxxx --events=0 --time=600 --threads=xxxx --percentile=95 --report-interval=1 oltp_read_write prepare
sysbench --db-driver=mysql --mysql-host=xxxx --mysql-port=xxxx --mysql-user=xxxx --mysql-password=xxxx --mysql-db=sbtest --table_size=xxxx --tables=xxxx --events=0 --time=600 --threads=xxxx --percentile=95 --report-interval=1 oltp_read_write run
oltp_read_write
indicates to implement the OLTP test by calling the /usr/share/sysbench/oltp_read_write.lua
script.--tables=xxxx
indicates the number of tables in this test.--table_size=xxxx
indicates the number of table rows in this test.--threads=xxxx
indicates the number of concurrent connections of the client in this test.--report-interval=1
indicates that the test result is output once every second.--percentile=95
indicates the sampling rate, which is 95% by default.--time=600
indicates the execution time of this test, which is 600 seconds.CPU (Core) | Memory (GB) | Threads | Test Duration | Template | SysBench QPS | SysBench TPS | avg_lat |
4 | 8 | 32 | 10 min | Default template (disused) | 34428.69 | 1721.43 | 18.59 ms |
| | | | High-performance parameter template | 35917.50 | 1795.87 | 17.82 ms |
| | | | High-stability parameter template | 34834.04 | 1741.70 | 18.37 ms |
8 | 32 | 64 | 10 min | Default template (disused) | 61210.19 | 3060.51 | 20.91 ms |
| | | | High-performance parameter template | 67719.55 | 3385.98 | 18.90 ms |
| | | | High-stability parameter template | 64910.09 | 3245.50 | 19.72 ms |
16 | 128 | 128 | 10 min | Default template (disused) | 106965.44 | 5348.27 | 23.93 ms |
| | | | High-performance parameter template | 127955.48 | 6397.77 | 20.00 ms |
| | | | High-stability parameter template | 119509.02 | 5975.45 | 21.41 ms |
CPU (Core) | Memory (GB) | Threads | Test Duration | Template | SysBench QPS | SysBench TPS | avg_lat |
4 | 8 | 32 | 10 min | Default template (disused) | 34428.69 | 1721.43 | 18.59 ms |
| | | | High-performance parameter template | 35917.50 | 1795.87 | 17.82 ms |
| | | | High-stability parameter template | 34834.04 | 1741.70 | 18.37 ms |
8 | 32 | 64 | 10 min | Default template (disused) | 61210.19 | 3060.51 | 20.91 ms |
| | | | High-performance parameter template | 67719.55 | 3385.98 | 18.90 ms |
| | | | High-stability parameter template | 64910.09 | 3245.50 | 19.72 ms |
16 | 128 | 128 | 10 min | Default template (disused) | 106965.44 | 5348.27 | 23.93 ms |
| | | | High-performance parameter template | 127955.48 | 6397.77 | 20.00 ms |
| | | | High-stability parameter template | 119509.02 | 5975.45 | 21.41 ms |
CPU (Core) | Memory (GB) | Threads | Test Duration | Template | SysBench QPS | SysBench TPS | avg_lat |
4 | 8 | 32 | 10 min | Default template (disused) | 32594.79 | 1629.74 | 19.63 ms |
| | | | High-performance parameter template | 33383.77 | 1669.19 | 19.17 ms |
| | | | High-stability parameter template | 32071.90 | 1603.60 | 19.95 ms |
8 | 32 | 64 | 10 min | Default template (disused) | 65718.22 | 3285.91 | 19.47 ms |
| | | | High-performance parameter template | 70195.37 | 3509.77 | 18.23 ms |
| | | | High-stability parameter template | 60704.69 | 3035.23 | 21.08 ms |
16 | 128 | 128 | 10 min | Default template (disused) | 132023.66 | 6601.18 | 19.38 ms |
| | | | High-performance parameter template | 151021.67 | 7551.08 | 16.95 ms |
| | | | High-stability parameter template | 132391.01 | 6619.55 | 19.33 ms |
Was this page helpful?