MySQL loop inserts tens of millions of data

MySQL loop inserts tens of millions of data

1. Create a test table

CREATE TABLE `mysql_genarate` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `uuid` varchar(50) DEFAULT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5999001 DEFAULT CHARSET=utf8;

2. Create a stored procedure for loop insertion

CREATE DEFINER=`root`@`localhost` PROCEDURE `test_two1`()
  BEGIN 
  DECLARE i INT DEFAULT 0;
  WHILE i < 3000 DO
    INSERT INTO mysql_genarate ( uuid ) VALUES( UUID() );
    SET i = i + 1;
  END WHILE;
END

Calling the test call test_two1() , it takes several minutes to test 10,000 data. If it is tens of millions of data, this speed will be unbearable.

3. Optimize stored procedures

Use batch insert sql statement

CREATE DEFINER=`root`@`localhost` PROCEDURE `insertPro`( IN sum INT )
  BEGIN
  DECLARE count INT DEFAULT 0;
  DECLARE i INT DEFAULT 0;
  SET @exesql = concat( "insert into mysql_genarate(uuid) values" );
  SET @exedata = "";
  SET count = 0;
  SET i = 0;
  WHILE count < sum DO
    SET @exedata = concat( @exedata, ",(UUID())" );
    SET count = count + 1;
    SET i = i + 1;
    IF i % 1000 = 0 THEN
      SET @exedata = SUBSTRING( @exedata, 2 );
      SET @exesql = concat( "insert into mysql_genarate(uuid) values ​​", @exedata );
      PREPARE stmt FROM @exesql;
      EXECUTE stmt;
      DEALLOCATE PREPARE stmt;
      SET @exedata = "";
    END IF;
  END WHILE;
  IF length( @exedata ) > 0 THEN
    SET @exedata = SUBSTRING( @exedata, 2 );
    SET @exesql = concat( "insert into mysql_genarate(uuid) values ​​", @exedata );
    PREPARE stmt FROM @exesql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;
  END IF;
END

Calling insertPro(10000) takes a few tenths of a second, which is acceptable.

The above is the details of MySQL loop insertion of tens of millions of data. For more information about MySQL loop insertion, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Steps for importing tens of millions of data into MySQL using .Net Core
  • .Net Core imports tens of millions of data into MySQL database
  • Detailed explanation of MySQL database tens of millions of data query and storage
  • Optimizing query speed of MySQL with tens of millions of data using indexes
  • How to quickly paginate MySQL data volumes of tens of millions
  • Optimizing the performance of paging query for MySQL with tens of millions of data
  • How to optimize MySQL tables with tens of millions of data?
  • Sharing ideas on processing tens of millions of data in a single MySQL table

<<:  JS implements multiple tab switching carousel

>>:  Use of Linux bzip2 command

Recommend

Solve the cross-domain problem of get and post requests of vue $http

Vue $http get and post request cross-domain probl...

List rendering instructions for efficient development of Vue front-end

v-for directive Speaking of lists, we have to men...

How to install Docker on Windows 10 Home Edition

I recently used Docker to upgrade a project. I ha...

IDEA uses the Docker plug-in (novice tutorial)

Table of contents illustrate 1. Enable Docker rem...

Automatic failover of slave nodes in replication architecture in MySQL 8.0.23

I have been in contact with MGR for some time. Wi...

VMware15.5 installation Ubuntu20.04 graphic tutorial

1. Preparation before installation 1. Download th...

CSS achieves colorful and smart shadow effects

background Ever wondered how to create a shadow e...

UTF-8 and GB2312 web encoding

Recently, many students have asked me about web p...

Introduction to using the MySQL mysqladmin client

Table of contents 1. Check the status of the serv...

How to set up URL link in Nginx server

For websites with an architecture like LNMP, they...

Nginx rush purchase current limiting configuration implementation analysis

Due to business needs, there are often rush purch...

W3C Tutorial (16): Other W3C Activities

This section provides an overview of some other i...