Detailed explanation of the mysqlslap command and syntax for the built-in stress test in MySQL 5.7

Detailed explanation of the mysqlslap command and syntax for the built-in stress test in MySQL 5.7

Preface

mysqlslap is a diagnostic program designed to simulate client load to a MySQL server and report the times for each stage. It works just like multiple clients are accessing the server.

1. Syntax used:

mysqlslap [options]

--auto-generate-sql, -a: Automatically generate test tables and data, indicating that the SQL script generated by mysqlslap itself is used to test concurrent pressure.
--auto-generate-sql-load-type=type : The type of test statement. Possible values ​​include: read, key, write, update, and mixed (default).
--auto-generate-sql-add-auto-increment : Automatically add an auto_increment column to the generated table.
--create-schema : Custom test library name.
--commint=N : Commit once after setting N DMLs.
--compress, -C : Compress information if both the server and the client support compression.
--concurrency=N, -c N: Indicates the concurrency, that is, how many clients are simulated to execute select at the same time. Multiple values ​​can be specified, for example: --concurrency=100,200,500.
--detach=N : Disconnect and reconnect after executing N statements.
--debug-info, -T : Print information about memory and CPU.
--engine=engine_name, -e engine_name : The engines to be tested. There can be multiple engines, separated by separators. For example: --engines=myisam,innodb.
--iterations=N, -i N : The number of iterations of the test execution, indicating how many times to run the test in different concurrent environments.
--number-char-cols=N, -x N : The automatically generated test table contains N character columns. The default is 1.
--number-int-cols=N, -y N : The automatically generated test table contains N numeric columns. The default is 1.
--number-of-queries=N : Total number of test queries (number of concurrent clients × number of queries per client).
--only-print : Only print test statements without actually executing them.
--query=name,-q: Use a custom script to execute the test. For example, you can customize a stored procedure or SQL statement to execute the test.

2. Case

Test 100 concurrent queries, automatically generate SQL test scripts, and execute 1000 total queries:

root# mysqlslap -uroot -p123456 -a --concurrency=100 --number-of-queries 1000
 Benchmark
 Average number of seconds to run all queries: 0.725 seconds
 Minimum number of seconds to run all queries: 0.725 seconds
 Maximum number of seconds to run all queries: 0.725 seconds
 Number of clients running queries: 100
 Average number of queries per client: 10

Test 100 concurrent threads, 5 tests, automatically generate SQL test scripts, read, write, and update mixed tests, auto-increment fields, test engine is innodb, execute 5000 total queries

root# mysqlslap -uroot -p123456--concurrency=100 --iterations=5 --auto-generate-sql --auto-generate-sql-load-type=mixed --auto-generate-sql-add-autoincrement --engine=innodb --number-of-queries=5000

Benchmark
 Running for engine innodb
 Average number of seconds to run all queries: 1.264 seconds
 Minimum number of seconds to run all queries: 1.161 seconds
 Maximum number of seconds to run all queries: 1.404 seconds
 Number of clients running queries: 100
 Average number of queries per client: 50

Summarize

The above is the stress test command mysqlslap and usage syntax of MySQL 5.7 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Use of MySQL stress testing tool Mysqlslap
  • Introduction and use of MySQL stress testing tool mysqlslap
  • MySQL stress testing method How to use mysqlslap to test MySQL stress?
  • Mysqlslap MySQL stress testing tool simple tutorial
  • Introduction to the use of MySQL official performance testing tool mysqlslap

<<:  How to clear the cache after using keep-alive in vue

>>:  PyTorch development environment installation tutorial under Windows

Recommend

A brief discussion on how Tomcat breaks the parent delegation mechanism

Table of contents JVM Class Loader Tomcat class l...

Two solutions for Vue package upload server refresh 404 problem

1: nginx server solution, modify the .conf config...

Detailed explanation on how to deploy H5 games to nginx server

On the road to self-learning game development, th...

Vue uses vue-quill-editor rich text editor and uploads pictures to the server

Table of contents 1. Preparation 2. Define the gl...

Detailed explanation of Linux curl form login or submission and cookie usage

Preface This article mainly explains how to imple...

Detailed explanation of how to pass password to ssh/scp command in bash script

Install SSHPASS For most recent operating systems...

js array entries() Get iteration method

Table of contents 1. Detailed syntax of entires()...

VMWare virtual machine 15.X LAN network configuration tutorial diagram

Recently, I have been working on several virtual ...

Design theory: the basics of font design

<br />Words are the inevitable product of hu...

Use Python to connect to MySQL database using the pymysql module

Install pymysql pip install pymysql 2|0Using pymy...

How to configure user role permissions in Jenkins

Jenkins configuration of user role permissions re...

Docker runs operations with specified memory

as follows: -m, --memory Memory limit, the format...

Javascript closure usage scenario principle detailed

Table of contents 1. Closure 2. Closure usage sce...

MySQL 5.7.21 winx64 installation and configuration method graphic tutorial

This article summarizes the notes for installing ...