Summary of Mysql common benchmark commands

Summary of Mysql common benchmark commands

mysqlslap

Common parameter description

  • –auto-generate-sql The system automatically generates SQL scripts for testing
  • –auto-generate-sql-add-autoincrement Add auto-increment ID to the generated table
  • –auto-generate-sql-load-type Specify the query type used in the test
  • –auto-generate-sql-write-number specifies the amount of data generated when initializing data
  • –concurrency specifies the number of concurrent threads
  • –engine specifies the storage engine of the table to be tested, separate multiple with commas
  • –no-drop Do not clean up test data (usually not set)
  • –iterations specifies the number of times the test is run
  • --number-of-queries specifies the number of queries to execute per thread
  • --debug-info specifies to output additional memory and cpu statistics
  • --number-int-cols Specifies the number of int columns to be included in the test table
  • –number-char-cols specifies the number of varchar types contained in the test table
  • --create-schema specifies the name of the database to be used for executing the test
  • –query is used to specify a custom sql script
  • --only-print does not run the test script, but prints the generated script

mysqlslap --concurrency=1,50,100,200 --iterations=3 --number-int-cols=5 --number-char-cols=5 --auto-generate-sql --auto-generate-sql-add-autoincrement --engine=myisam,innodb --number-of-queries=10 --create-schema=sbtest

sysbench

Installation Instructions

# Download https://gihub.com/akopytov/sysbench/archive/0.5.zip# Unzip sysbench-0.5zip
cd sysbench
./autogen.sh# Configure your own mysql include and lib directories./configure --with-mysql-includes=/usr/local/mysql/include/ --with-mysql-libs=/usr/local/mysql/lib/
make && make install

Common parameters

–test is used to specify the type of test to be performed. The following parameters are supported:

Fileio file system I/O performance test

cpu cpu performance test

memory memory performance test

  • –mysql-db is used to specify the database name for executing the benchmark
  • –mysql-table-engine is used to specify the storage engine to be used
  • --oltp-tables-count Number of tables to perform the test on
  • –oltp-table-size specifies the number of rows in each table
  • –num-threads specifies the number of concurrent threads to test
  • –max-time specifies the maximum test time in seconds
  • –report-interval specifies the interval at which statistics are output
  • –mysql-user specifies the mysql user to perform the test
  • --mysql-password password

prepare is used to prepare test data

Run the test

cleanup clears test data

# Test the CPUsysbench --test=cpu --cpu-max-prime=10000 run# Disk I/O testFirst prepare the data to be larger than the memorysysbench --test=Fileio --file-total-size=1Gpreparesysbench --test=Fileio --num--threads=8 --init-rgn=on -file-total-size=1G --file-test-mode=rndrw --report-interval=1# Database performance testSet up the user and password data for the benchmark test, then enter the test directory of sysbench and use the lua script to testsysbench --test=./oltp.lua --mysql-table-engine=innodb --oltp-table-size=10000 --mysql-db=db_name --mysql-user=user_name --mysql-password=password --oltp-tables-count=10 --mysql-socket=/usr/local/mysql/data/mysql.sock prepare# Start the test and change the prepare in the above command to run

mysqlslap

Common parameter description

  • –auto-generate-sql The system automatically generates SQL scripts for testing
  • –auto-generate-sql-add-autoincrement Add auto-increment ID to the generated table
  • –auto-generate-sql-load-type Specify the query type used in the test
  • –auto-generate-sql-write-number specifies the amount of data generated when initializing data
  • –concurrency specifies the number of concurrent threads
  • –engine specifies the storage engine of the table to be tested, separate multiple with commas
  • –no-drop Do not clean up test data (usually not set)
  • –iterations specifies the number of times the test is run
  • --number-of-queries specifies the number of queries to execute per thread
  • --debug-info specifies to output additional memory and cpu statistics
  • --number-int-cols Specifies the number of int columns to be included in the test table
  • –number-char-cols specifies the number of varchar types contained in the test table
  • --create-schema specifies the name of the database to be used for executing the test
  • –query is used to specify a custom sql script
  • --only-print does not run the test script, but prints the generated script

mysqlslap --concurrency=1,50,100,200 --iterations=3 --number-int-cols=5 --number-char-cols=5 --auto-generate-sql --auto-generate-sql-add-autoincrement --engine=myisam,innodb --number-of-queries=10 --create-schema=sbtest

sysbench

Installation Instructions

# Download https://gihub.com/akopytov/sysbench/archive/0.5.zip# Unzip sysbench-0.5zip
cd sysbench
./autogen.sh# Configure your own mysql include and lib directories./configure --with-mysql-includes=/usr/local/mysql/include/ --with-mysql-libs=/usr/local/mysql/lib/
make && make install

Common parameters

–test is used to specify the type of test to be performed. The following parameters are supported:

Fileio file system I/O performance test

cpu cpu performance test

memory memory performance test

  • –mysql-db is used to specify the database name for executing the benchmark
  • –mysql-table-engine is used to specify the storage engine to be used
  • --oltp-tables-count Number of tables to perform the test on
  • –oltp-table-size specifies the number of rows in each table
  • –num-threads specifies the number of concurrent threads to test
  • –max-time specifies the maximum test time in seconds
  • –report-interval specifies the interval at which statistics are output
  • –mysql-user specifies the mysql user to perform the test
  • --mysql-password password

prepare is used to prepare test data

Run the test

cleanup clears test data

# Test the CPUsysbench --test=cpu --cpu-max-prime=10000 run# Disk I/O testFirst prepare the data to be larger than the memorysysbench --test=Fileio --file-total-size=1Gpreparesysbench --test=Fileio --num--threads=8 --init-rgn=on -file-total-size=1G --file-test-mode=rndrw --report-interval=1# Database performance testSet up the user and password data for the benchmark test, then enter the test directory of sysbench and use the lua script to testsysbench --test=./oltp.lua --mysql-table-engine=innodb --oltp-table-size=10000 --mysql-db=db_name --mysql-user=user_name --mysql-password=password --oltp-tables-count=10 --mysql-socket=/usr/local/mysql/data/mysql.sock prepare# Start the test and change the prepare in the above command to run

The above is all the content of this sharing. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • MySQL benchmark suite Benchmark installation DBI component process sharing

<<:  80 lines of code to write a Webpack plugin and publish it to npm

>>:  Detailed explanation of monitoring NVIDIA GPU usage under Linux

Recommend

In-depth understanding of Worker threads in Node.js

Table of contents Overview The history of CPU-bou...

Implementation of code optimization for Vue2.x project performance optimization

Table of contents 1 Use of v-if and v-show 2. Dif...

Summary of some efficient magic operators in JS

JavaScript now releases a new version every year,...

Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

MySQL 5.7.9 version sql_mode=only_full_group_by i...

Implementing circular scrolling list function based on Vue

Note: You need to give the parent container a hei...

SQL left join and right join principle and example analysis

There are two tables, and the records in table A ...

Summary of four situations of joint query between two tables in Mysql

Generally speaking, in order to get more complete...

How to use nodejs to write a data table entity class generation tool for C#

Although Microsoft provides T4 templates, I find ...

Difference between MySQL btree index and hash index

In MySQL, most indexes (such as PRIMARY KEY, UNIQ...

How to prevent Vue from flashing in small projects

Summary HTML: element plus v-cloak CSS: [v-cloak]...

CSS3 realizes draggable Rubik's Cube 3D effect

Mainly used knowledge points: •css3 3d transforma...