Skip to content

Latest commit

 

History

History
174 lines (121 loc) · 5.65 KB

backup-and-restore.md

File metadata and controls

174 lines (121 loc) · 5.65 KB
title summary category
Backup and Restore
Learn how to back up and restore the data of TiDB.
how-to

Backup and Restore

This document describes how to back up and restore the data of TiDB. Currently, this document only covers full backup and restoration.

Here we assume that the TiDB service information is as follows:

Name Address Port User Password
TiDB 127.0.0.1 4000 root *

Use the following tools for data backup and restoration:

  • mydumper: to export data from TiDB
  • loader: to import data into TiDB

Download TiDB toolset (Linux)

  1. Download the tool package:

    {{< copyable "shell-regular" >}}

    wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz && \
    wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
  2. Check the file integrity. If the result is fine, the file is correct.

    {{< copyable "shell-regular" >}}

    sha256sum -c tidb-enterprise-tools-latest-linux-amd64.sha256
  3. Extract the package:

    {{< copyable "shell-regular" >}}

    tar -xzf tidb-enterprise-tools-latest-linux-amd64.tar.gz && \
    cd tidb-enterprise-tools-latest-linux-amd64

Full backup and restoration using mydumper/loader

You can use mydumper to export data from TiDB and loader to import data into TiDB.

Important: You must use the mydumper from the Enterprise Tools package, and not the mydumper provided by your operating system's package manager. The upstream version of mydumper does not yet handle TiDB correctly (#155). Using mysqldump is also not recommended, as it is much slower for both backup and restoration.

Best practices of full backup and restoration using mydumper/loader

To quickly backup and restore data (especially large amounts of data), refer to the following recommendations:

  • Keep the exported data file as small as possible and it is recommended keep it within 64M. You can use the -F parameter to set the value.
  • Adjust the -t parameter of loader based on the number and the load of TiKV instances. It is recommended that you set the value of -t to 32. If the load of TiKV is too high and the backoffer.maxSleep 15000ms is exceeded log is displayed many times, decrease the value of -t; otherwise, increase the value.

Backup data from TiDB

Use mydumper to backup data from TiDB.

{{< copyable "shell-regular" >}}

./bin/mydumper -h 127.0.0.1 -P 4000 -u root -t 32 -F 64 -B test -T t1,t2 --skip-tz-utc -o ./var/test

In this command,

  • -B test: means the data is exported from the test database.
  • -T t1,t2: means only the t1 and t2 tables are exported.
  • -t 32: means 32 threads are used to export the data.
  • -F 64: means a table is partitioned into chunks and one chunk is 64MB.
  • --skip-tz-utc: the purpose of adding this parameter is to ignore the inconsistency of time zone setting between MySQL and the data exporting machine and to disable automatic conversion.

If mydumper emits error like:

** (mydumper:27528): CRITICAL **: 13:25:09.081: Could not read data from testSchema.testTable: GC life time is shorter than transaction duration, transaction starts at 2019-08-05 21:10:01.451 +0800 CST, GC safe point is 2019-08-05 21:14:53.801 +0800 CST

Then execute two more commands:

  • Step 1: before executing the mydumper command, query the GC values of the TiDB cluster and adjust it to a suitable value using the MySQL client.

    mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time';
    +-----------------------+------------------------------------------------------------------------------------------------+
    | VARIABLE_NAME         | VARIABLE_VALUE                                                                                 |
    +-----------------------+------------------------------------------------------------------------------------------------+
    | tikv_gc_life_time     | 10m0s                                                                                          |
    +-----------------------+------------------------------------------------------------------------------------------------+
    1 rows in set (0.02 sec)
    
    mysql> update mysql.tidb set VARIABLE_VALUE = '720h' where VARIABLE_NAME = 'tikv_gc_life_time';
  • Step 2: after you finish running the mydumper command, restore the GC value of the TiDB cluster to its original value in step 1.

    {{< copyable "sql" >}}

    update mysql.tidb set VARIABLE_VALUE = '10m' where VARIABLE_NAME = 'tikv_gc_life_time';

Restore data into TiDB

To restore data into TiDB, use loader to import the previously exported data. See Loader instructions for more information.

{{< copyable "shell-regular" >}}

./bin/loader -h 127.0.0.1 -u root -P 4000 -t 32 -d ./var/test

After the data is imported, you can view the data in TiDB using the MySQL client:

{{< copyable "shell-regular" >}}

mysql -h127.0.0.1 -P4000 -uroot

{{< copyable "sql" >}}

show tables;
+----------------+
| Tables_in_test |
+----------------+
| t1             |
| t2             |
+----------------+

{{< copyable "sql" >}}

select * from t1;
+----+------+
| id | age  |
+----+------+
|  1 |    1 |
|  2 |    2 |
|  3 |    3 |
+----+------+

{{< copyable "sql" >}}

select * from t2;
+----+------+
| id | name |
+----+------+
|  1 | a    |
|  2 | b    |
|  3 | c    |
+----+------+