Implementation of MySQL index-based stress testing

Implementation of MySQL index-based stress testing

1. Simulate database data

1-1 Create database and table scripts - vim slap.sh

#!/bin/bash  
HOSTNAME="localhost" 
PORT="3306" 
USERNAME="root" 
PASSWORD="123" 
DBNAME="testdb" 
TABLENAME="t1" 
#create database 
mysql -h ${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "drop database if exists ${DBNAME}" 
create_db_sql="create database if not exists ${DBNAME}" 
mysql -h ${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${create_db_sql}" 
#create table 
create_table_sql="create table if not exists ${TABLENAME}(stuid int not null primary key,stuname varchar(20) not null,stusex char(1)   
not null,cardid varchar(20) not null,birthday datetime,entertime datetime,address varchar(100)default null)" 
mysql -h ${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} ${DBNAME} -e "${create_table_sql}" 
#insert data to table 
i="1" 
while [ $i -le 500000 ]  
do  
insert_sql="insert into ${TABLENAME} values($i,'alexsb_$i','1','110011198809163418','1990-05-16','2017-09-13','testdb')" 
mysql -h ${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} ${DBNAME} -e "${insert_sql}" 
let i++  
done  
#select data  
select_sql="select count(*) from ${TABLENAME}" 
mysql -h ${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} ${DBNAME} -e "${select_sql}"

1-2 Execute the script

sh slap.sh

1-3 Check data availability

mysql -uroot -p123
select count(*) from testdb.t1;

1-4 Use mysqlslap to perform stress testing before and after index optimization

mysqlslap --defaults-file=/etc/my.cnf \
 --concurrency=100 --iterations=1 --create-schema='testdb' \
--query="select * from testdb.t1 where stuname='test_100'" engine=innodb \
--number-of-queries=2000 -uroot -p123 -verbose 

This is the end of this article about the implementation of MySQL index-based stress testing. For more relevant MySQL index stress testing content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL series 15 MySQL common configuration and performance stress test
  • How to use MySQL stress testing tools
  • Detailed tutorial on sysbench stress testing of mysql
  • MySQL stress testing method How to use mysqlslap to test MySQL stress?
  • MySQL stress test script example
  • Mysqlslap MySQL stress testing tool simple tutorial

<<:  Why are the pictures on mobile web apps not clear and very blurry?

>>:  A detailed introduction to wget command in Linux

Recommend

Detailed explanation of JS browser storage

Table of contents introduction Cookie What are Co...

HTML realizes real-time monitoring function of Hikvision camera

Recently the company has arranged to do some CCFA...

Detailed analysis of MySQL instance crash cases

[Problem description] Our production environment ...

CSS shadow animation optimization tips

This technique comes from this article - How to a...

How to use the Marquee tag in XHTML code

In the forum, I saw netizen jeanjean20 mentioned h...

Web data storage: Cookie, UserData, SessionStorage, WebSqlDatabase

Cookie It is a standard way to save the state of ...

Solve the problem of docker log mounting

The key is that the local server does not have wr...

Incomplete solution for using input type=text value=str

I encountered a very strange problem today. Look a...

How to implement hot deployment and hot start in Eclipse/tomcat

1. Hot deployment: It means redeploying the entir...

Detailed explanation of using Nginx reverse proxy to solve cross-domain problems

question In the previous article about cross-doma...

Docker container data volume named mount and anonymous mount issues

Table of contents What is a container data volume...

Ubuntu 15.04 opens mysql remote port 3306

Ubuntu 15.04 opens MySQL remote port 3306. All th...

18 killer JavaScript one-liners

Preface JavaScript continues to grow and prosper ...

How to assign default values ​​to fields when querying MySQL

need When querying a field, you need to give the ...