This article describes various ways to implement MySQL database backup. Share with you for your reference, the details are as follows: 1. Use mysqldump for backup 1. Completely back up all databases mysqldump -u root -p --all-databases > E:/all.sql Prior to MySQL 8, stored procedures and events were stored in the mysql.proc and mysql.event tables. Starting with MySQL 8, the definitions of the corresponding objects are stored in the data dictionary, and these tables are not backed up. To include stored procedures and events, use the following statement: mysqldump -u root -p --all-databases --routines --events > E:/all.sql 2. Point-in-time recovery To obtain point-in-time recovery, you should specify --single-transaction and --master-data --single-transaction Before the backup, the transaction isolation level is set to REPEATABLE READ mode and START TRANSACTION is executed to provide a consistent backup. --master-data Output the location of the server's binary log to a sql file.
--master-data = 2 means that during the export process, the binlog and POS points of the current library are recorded and this line is commented in the export file. --master-data = 1 means that during the export process, the binlog and POS points of the current library are recorded, and this line is not commented in the export file. 3. When exporting from the library, record the binary log position of the main library
--dump-slave = 2 means that during the export process, the binlog and POS points of the master database are recorded and this line is commented in the export file. --dump-slave = 1 means that during the export process, the binlog and POS points of the master database are recorded, and this line is not commented in the export file. 4. Specify database and table export mysqldump -u root -p --databases database> E:/bak.sql mysqldump -u root -p --databases database --tables data table> E:/bak.sql 5. Ignore table mysqldump -u root -p --databases database --ignore-table=database.datatable> E:/bak.sql 6. Specify rows mysqldump -u root -p --databases database --tables data table --where="condition" > E:/bak.sql Or use limit to limit the result set
7. Export remote server
8. Backup for merging data with other servers
--skip-add-drop-table: Do not write the drop table statement to the export file. --replace: will use replace into statement instead of insert statement to export. 2. Use mysqlpump for backup 1. Parallel processing, speed up the backup process by specifying the number of threads mysqlpump --default-parallelism=8 > E:/all.sql 2. You can also specify the number of threads for each database
3. Exclude or include databases mysqlpump -u root -p --include-databases=%t > E:/bak.sql Back up all databases ending with t. Multiple databases are separated by commas. Database names can use % or _ wildcards. In addition, there are similar --include-events, --include-routines, --include-tables, --include-triggers, --include-users, etc. mysqlpump -u root -p --exclude-databases=a% > E:/bak.sql Exclude databases starting with a from backup. Multiple databases are separated by commas. Database names can use % or _ wildcards. In addition, there are similar to --exclude-events, --exclude-routines, --exclude-tables, --exclude-triggers, --exclude-users, etc. 4. Backup User mysqlpump -u root -p --exclude-databases=% --users > E:/user.sql You can exclude certain users via --exclude-users
5. Compressed backup By using --compress-output=lz4 or --compress-output=zlib mysqlpump -u root -p --compress-output=lz4 > E:/all.lz4 mysqlpump -u root -p --compress-output=zlib > E:/all.zlib Decompress it with the following statement lz4_decompress E:/all.lz4 all.sql zlib_decompress E:/all.zlib all.sql 3. Use mydumper for backup mydumper needs to be installed separately, official website: https://github.com/maxbube/mydumper/releases 1. Full backup mydumper -u root --password=password --outputdir export path 2. Back up a separate table
3. Use regular expressions to back up specific databases
Exclude the mysql and test databases from the backup. 4. Back up large tables
--rows indicates how many rows to divide the table into --trx-consistency-only will minimize locking if innodb. -t specifies the number of threads 5. Compressed backup
6. Back up only data Use the --no-schemas option to skip the schema and back up only the data.
4. Use ordinary files for backup You can back up the files in the data directory by directly copying them. You need to shut down MySQL first, copy the files, and then start MySQL. 5. Use xtrabackup for backup https://www.percona.com/downloads/XtraBackup/LATEST/ 1. Full backup
--defaults-file database configuration file --backup Perform a backup operation --parallel The number of concurrent threads during backup --target-dir The directory for backup files 2. Incremental backup
Incremental backup is based on full backup, --incremental-basedir points to the full backup directory Readers who are interested in more MySQL-related content can check out the following topics on this site: "Summary of MySQL Index Operation Skills", "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills". I hope this article will be helpful to everyone's MySQL database design. You may also be interested in:
|
<<: Vue implements weather forecast function
>>: Detailed explanation of three ways to connect Docker containers to each other
Disclaimer: This password reset method can direct...
Using SSH terminal (such as putty, xshell) to con...
Due to the needs of the project, I plan to study ...
This article mainly introduces the implementation...
Table of contents Why optimize? ? Where to start?...
1. Install Docker on the server yum install docke...
Summary This article will introduce the following...
Table of contents 01 JavaScript (abbreviated as: ...
Table of contents Deploy httpd with docker contai...
Programmers must deal with MySQL a lot, and it ca...
Recently, when I was sorting out the details of d...
Sprite Cow download CSS Lint download Prefixr dow...
This article is translated from the blog Usability...
I have read a lot of knowledge and articles about...
I've been writing a WeChat applet recently an...