MySQL database migration quickly exports and imports large amounts of data

MySQL database migration quickly exports and imports large amounts of data

Database migration is a problem we often encounter. For a small amount of data, migration will basically not be a problem. In the production environment, migration work is required in the following situations:

  • Insufficient disk space. For example, for some old projects, the selected models may not necessarily be suitable for the database. As time goes by, there is a high probability that hard drives will become scarce;
  • There is a bottleneck in the business. For example, if a single machine is used to handle all read and write operations in a project, the business pressure will increase and become unbearable. If the IO pressure is within an acceptable range, a read-write separation solution will be adopted;
  • The machine is bottlenecked. The bottlenecks of the machine are mainly disk IO capacity, memory, and CPU. In addition to optimizing the bottlenecks, migration is a good solution.
  • Project transformation. The databases of some projects are located across different computer rooms, so it is possible to add nodes in different computer rooms or migrate machines from one computer room to another. For example, different businesses share the same server, and migration will be performed to relieve server pressure and facilitate maintenance.

There are three common methods for MySQL migration:

1. Export the database directly, copy the file to the new server, and import it on the new server.

2. Use third-party migration tools.

3. Copy the data files and library table structure files directly to the new server and mount them to the MySQL service with the same configuration.

The advantages of the first solution are: it will rebuild the data files, reduce the space occupied by the data files, has the best compatibility, rarely has problems with exporting and importing, and is flexible in requirements. Disadvantages: Traditional export and import takes a long time.

Advantages of the second solution: After the settings are completed, the transmission is unattended and completed automatically. Disadvantages: Not flexible enough, complicated to set up, long transmission time, and it is difficult to continue transmission from the abnormal location after an abnormality occurs.

The advantages of the third solution: less time, files can be transferred at breakpoints, and fewer operation steps. Disadvantages: The MySQL version and configuration in the new and old servers must be the same, which may cause unknown problems.

If the database migration is due to business bottlenecks or project transformation, which requires changes to the data table structure (such as partitions and tables), we can only use the first method.

Use MySQL's SELECT INTO OUTFILE and LOAD DATA INFILE to quickly export and import data

The LOAD DATA INFILE statement reads data from a text file into a table at a very high speed. The MySQL official documentation also states that this method is 20 times faster than inserting one row of data at a time.

When you use SELECT ... INTO OUTFILE and LOAD DATA INFILE in tandem to write data from a database to a file and then read it from the file into the database, the field and row handling options of the two commands must match. Otherwise, LOAD DATA INFILE will not be able to interpret the file contents correctly.

The following is an example of a project where MySQL is migrated from Windows to Linux with a total data volume of 12G.

Export data on Windows platform:

Tables.txt is a file that stores the names of data tables. By reading the names of data tables from the file, all tables are exported in a loop. If sub-tables are involved in the process, the exported SQL statements and batch codes can be modified according to the sub-table rules, which is very flexible.

@echo off & setlocal enabledelayedexpansion
for /f %%i in (tables.txt) do ( set table=%%i
 echo "dump table -- !table! --"
 mysql -uroot -p12345678 codetc_old -e "SELECT * INTO OUTFILE 'F:/MySQL/Uploads/!table!.txt' FIELDS TERMINATED BY ',' FROM !table!"
)
pause

Import data on Linux platform:

#!/bin/bash
while read line
do
    mysql -uroot -p12345678 codetc_new -e "LOAD DATA INFILE '/var/lib/mysql-files/$line.txt' INTO TABLE $line FIELDS TERMINATED BY ','"
done < tables.txt

Before importing data, you need to create a table structure on the new machine. It takes about 3 minutes to export 12G of data and about 4 minutes to import it (the execution time will vary depending on the configuration of the machine and is not of reference value)

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed steps for migrating the data folder of the MySQL database
  • Detailed explanation of how to migrate a MySQL database to another machine
  • Summary of methods for migrating Oracle database to MySQL
  • Migrate mysql database to Oracle database
  • How to use mysql Innodb tablespace unloading, migration, and loading
  • Detailed explanation of MySQL data migration--data directory direct replacement precautions
  • 5 ways to migrate from MySQL to ClickHouse
  • Detailed explanation of mysql5.5 database data directory migration method
  • MySQL backup and migration data synchronization method
  • A MySQL migration plan and practical record of pitfalls

<<:  Implementation of CentOS8.0 network configuration

>>:  How to capture exceptions gracefully in React

Recommend

How to find and delete duplicate records in MySQL

Hello everyone, I am Tony, a teacher who only tal...

Angular Dependency Injection Explained

Table of contents Overview 1. Dependency Injectio...

Json advantages and disadvantages and usage introduction

Table of contents 1. What is JSON 1.1 Array liter...

How to verify whether MySQL is installed successfully

After MySQL is installed, you can verify whether ...

Using radial gradient in CSS to achieve card effect

A few days ago, a colleague received a points mal...

Vue implements the right slide-out layer animation

This article example shares the specific code of ...

How to place large images in a small space on a web page

Original source: www.bamagazine.com There are nar...

How to implement digital paging effect code and steps in CSS

A considerable number of websites use digital pagi...

Detailed explanation of 10 common HTTP status codes

The HTTP status code is a 3-digit code used to in...

How to implement remote automatic backup of MongoDB in Linux

Preface After reading the previous article about ...

Detailed steps for porting busybox to build a minimal root file system

Busybox: A Swiss Army knife filled with small com...