Home Database Mysql Tutorial Details of the code for mysqlslap to execute benchmark tests

Details of the code for mysqlslap to execute benchmark tests

Mar 04, 2017 pm 02:43 PM

View the main parameter configuration and description supported by mysqlslap as follows


<span style="color: #000000">-a, --auto-generate-sql 由系统自动生成SQL脚本进行测试<br/>                      Generate SQL where not supplied by file or command line.<br/>  --auto-generate-sql-add-autoincrement 生成的表中增加自增的ID<br/>                      Add an AUTO_INCREMENT column to auto-generated tables.--auto-generate-sql-load-type=name 制定测试过程中使用的查询类型<br/>                      Specify test load type: mixed, update, write, key, or<br/>                      read; default is mixed.--auto-generate-sql-write-number=# 制定所生成的初始化数据的条数<br/>                      Number of row inserts to perform for each thread (default<br/>                      is 100).-c, --concurrency=name 制定并发线程的数量<br/>                      Number of clients to simulate for query to run.<br/>  --create=name       File or string to use create tables.<br/>  --create-schema=name 创建一个测试数据库的schema名称<br/>                      Schema to run tests in.-T, --debug-info    This is a non-debug version. Catch this and exit.指定输出额外的内存及CPU统计信息-e,<br/>                       --engine=name   Storage engine to use for creating the table. 指定所测试的存储引擎,用逗号可以分割以便测试多个引擎<br/>  -h, --host=name     Connect to host. 链接远程主机的IP<br/>  -i, --iterations=#  Number of times to run the tests. 指定本次测试需要运行的次数<br/>  --no-drop           Do not drop the schema after the test. 指定测试完成后,不清理过程数据<br/>  -x, --number-char-cols=name 指定测试表中生成的varchar类型的数据数量<br/>                      Number of VARCHAR columns to create in table if<br/>                      specifying --auto-generate-sql.<br/>  -y, --number-int-cols=name 指定测试表中生成的int类型的数据数量<br/>                      Number of INT columns to create in table if specifying<br/>                      --auto-generate-sql.<br/>  --number-of-queries=# 指定每一个线程所执行的查询数量<br/>                      Limit each client to this number of queries (this is not<br/>                      exact).<br/>  --only-print        Do not connect to the databases, but instead print out 并不运行测试脚本,而是把生成的脚本打印出来<br/>                      what would have been done.<br/>  -p, --password[=name] 指定测试所用的链接数据库的密码<br/>                      Password to use when connecting to server. If password is<br/>                      not given it&#39;s asked from the tty.-q, --query=name    Query to run or file containing query to run.自定义测试用的sql<br/>  -u, --user=name     User for login if not current user. 指定测试所用的链接数据库的用户名<br/></span>
Copy after login


The complete running script is as follows

mysqlslap -S /tmp/mysql3306.sock --concurrency=1,50,100,200 --iterations=3 --number-int-cols=5 --number-char-cols=5 
--auto-generate-sql --auto-generate-sql-add-autoincrement --engine=innodb --number-of-queries=10
 --create-schema=test -uroot -p
Copy after login

After entering the password, the test information is as follows

Enter password: 
Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 0.097 seconds
        Minimum number of seconds to run all queries: 0.093 seconds
        Maximum number of seconds to run all queries: 0.107 seconds
        Number of clients running queries: 1
        Average number of queries per client: 10Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 0.506 seconds
        Minimum number of seconds to run all queries: 0.447 seconds
        Maximum number of seconds to run all queries: 0.570 seconds
        Number of clients running queries: 50
        Average number of queries per client: 0Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 2.204 seconds
        Minimum number of seconds to run all queries: 1.595 seconds
        Maximum number of seconds to run all queries: 3.257 seconds
        Number of clients running queries: 100
        Average number of queries per client: 0mysqlslap: Error when connecting to server: 1040 Too many connections
mysqlslap: Error when connecting to server: 1040 Too many connections
mysqlslap: Error when connecting to server: 1040 Too many connections
mysqlslap: Error when connecting to server: 1040 Too many connections
Copy after login

It can be seen at this time that when the concurrency reaches 200, a Too many connections exception occurs. This is because the maximum number of connections configured by mysql is default. is 100, so you need to make the following modifications to my.cnf

Add max_connections=1024, and then run normally

Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 0.093 seconds
        Minimum number of seconds to run all queries: 0.087 seconds
        Maximum number of seconds to run all queries: 0.098 seconds
        Number of clients running queries: 1
        Average number of queries per client: 10Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 0.514 seconds
        Minimum number of seconds to run all queries: 0.462 seconds
        Maximum number of seconds to run all queries: 0.545 seconds
        Number of clients running queries: 50
        Average number of queries per client: 0Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 1.209 seconds
        Minimum number of seconds to run all queries: 1.173 seconds
        Maximum number of seconds to run all queries: 1.241 seconds
        Number of clients running queries: 100
        Average number of queries per client: 0Benchmark
        Running for engine innodb
        Average number of seconds to run all queries: 2.174 seconds
        Minimum number of seconds to run all queries: 1.978 seconds
        Maximum number of seconds to run all queries: 2.402 seconds
        Number of clients running queries: 200
        Average number of queries per client: 0
Copy after login

The above is the detailed introduction of the code for mysqlslap to execute the benchmark test, more related Please pay attention to the PHP Chinese website (www.php.cn) for content!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

iPad Air 5 benchmarks show same performance as 11-inch iPad Pro iPad Air 5 benchmarks show same performance as 11-inch iPad Pro May 18, 2023 am 10:34 AM

iPad Air 5 benchmarks show same performance as 11-inch iPad Pro

Apple's Snapdragon 8 Gen 3 vs. A17 Pro: Both have ray tracing, but which one is better? Apple's Snapdragon 8 Gen 3 vs. A17 Pro: Both have ray tracing, but which one is better? Oct 25, 2023 am 11:17 AM

Apple's Snapdragon 8 Gen 3 vs. A17 Pro: Both have ray tracing, but which one is better?

LLM ultra-long context query-practical performance evaluation LLM ultra-long context query-practical performance evaluation Apr 03, 2024 am 11:55 AM

LLM ultra-long context query-practical performance evaluation

Benchmarks and performance comparison in Go language Benchmarks and performance comparison in Go language May 08, 2024 am 09:27 AM

Benchmarks and performance comparison in Go language

3DMark Steal Nomad graphics card benchmark test postponed to achieve fairer cross-platform comparison 3DMark Steal Nomad graphics card benchmark test postponed to achieve fairer cross-platform comparison Apr 02, 2024 am 08:58 AM

3DMark Steal Nomad graphics card benchmark test postponed to achieve fairer cross-platform comparison

How to benchmark pipelines using pipelines in Go? How to benchmark pipelines using pipelines in Go? Jun 04, 2024 pm 04:40 PM

How to benchmark pipelines using pipelines in Go?

How to benchmark in Go? How to benchmark in Go? May 11, 2023 pm 04:09 PM

How to benchmark in Go?

Intel shares official Arc A750 GPU benchmark showing better than RTX 3060 performance Intel shares official Arc A750 GPU benchmark showing better than RTX 3060 performance May 10, 2023 pm 07:13 PM

Intel shares official Arc A750 GPU benchmark showing better than RTX 3060 performance

See all articles