How to quickly insert 10 million records into MySQL

How to quickly insert 10 million records into MySQL

I heard that there is an interview question: How to quickly insert 10 million records into MySQL?

I tried it privately and found that it took 0.9s to insert 10,000 data, 4.7s to insert 100,000 data, and about 58s to insert 1,000,000 data. For 1,000,000 data, my laptop took 5 minutes to run and stopped by itself. I was so excited that I was thinking about it. I used the following code:

-- Enter the database use test;
--Show all tables show tables;
-- Create the majors table create table majors(id int, major varchar(255));
-- Define the end character $
delimiter "$";
-- Create a stored procedure and define a stored method create procedure batchInsert(in args int)
begin
declare i int default 1;
-- Enable transactions (important! If not, 1 million data will take days to calculate)
start transaction;
while i <= args do
insert into majors(id,major) value(i,concat("Software Engineering-",i));
set i = i + 1;
end while;
commit;
end
$

-- Call function to generate data -- Generate 100,000 records first, input $, and press Enter to execute call batchInsert(100000);
$

It took 4.44 seconds to generate 100,000 pieces of data

insert image description here

It took 58.62 seconds to generate 1 million pieces of data, which is almost 1 minute.

insert image description here

Generate 10 million pieces of data. The big guys in front of the screen can try it. Haha, I killed the process with Ctrl+C!

insert image description here

Summarize

This concludes this article on how to quickly batch insert 10 million records into MySQL. For more information on how to batch insert data into MySQL, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Examples of 4 methods for inserting large amounts of data in MySQL
  • MYSQL batch insert data implementation code
  • Tutorial on implementing batch inserts in MySQL to optimize performance
  • How to avoid MySQL batch inserts with unique indexes
  • MySQL batch insert data script
  • Detailed explanation of MySQL batch SQL insert performance optimization
  • Solutions to MySQL batch insert and unique index problems
  • Detailed explanation of several examples of insert and batch statements in MySQL

<<:  The whole process of upgrading Angular single project to multiple projects

>>:  Web design reference firefox default style

Recommend

A brief discussion on the three major issues of JS: asynchrony and single thread

Table of contents Single thread asynchronous Sing...

Detailed explanation of the correct use of the count function in MySQL

1. Description In MySQL, when we need to get the ...

Ubuntu opens port 22

Scenario You need to use the xshell tool to conne...

Introduction to SSL certificate installation and deployment steps under Nginx

Table of contents Problem description: Installati...

Native JS object-oriented typing game

This article shares the specific code of JS objec...

The whole process of configuring hive metadata to MySQL

In the hive installation directory, enter the con...

How to encapsulate axios in Vue project (unified management of http requests)

1. Requirements When using the Vue.js framework t...

What is the function and writing order of the a tag pseudo class

The role of the a tag pseudo-class: ":link&qu...

Improvement experience and sharing of 163 mailbox login box interactive design

I saw in the LOFTER competition that it was mentio...

Explore JavaScript prototype data sharing and method sharing implementation

Data Sharing What kind of data needs to be writte...

Analyze the usage and principles of Vue's provide and inject

First, let's talk about why we use provide/in...

Creation, constraints and deletion of foreign keys in MySQL

Preface After MySQL version 3.23.44, InnoDB engin...

MySQL 5.7.21 Installer Installation Graphic Tutorial under Windows 10

Install MySQL and keep a note. I don’t know if it...

Solution to the failure of docker windows10 shared directory mounting

cause When executing the docker script, an error ...

Solutions to VMware workstation virtual machine compatibility issues

How to solve VMware workstation virtual machine c...