diff --git a/dumpling-overview.md b/dumpling-overview.md index 577e9f155b30b..6f532d11f800b 100644 --- a/dumpling-overview.md +++ b/dumpling-overview.md @@ -260,9 +260,9 @@ With the above options specified, Dumpling can have a quicker speed of data expo > **Note:** > -> In most scenarios, you do not need to adjust the default data consistency options of Dumpling. +> In most scenarios, you do not need to adjust the default data consistency options of Dumpling (the default value is `auto`). -Dumpling uses the `--consistency ` option to control the way in which data is exported for "consistency assurance". For TiDB, data consistency is guaranteed by getting a snapshot of a certain timestamp by default (namely, `--consistency snapshot`). When using snapshot for consistency, you can use the `--snapshot` option to specify the timestamp to be backed up. You can also use the following levels of consistency: +Dumpling uses the `--consistency ` option to control the way in which data is exported for "consistency assurance". When using snapshot for consistency, you can use the `--snapshot` option to specify the timestamp to be backed up. You can also use the following levels of consistency: - `flush`: Use [`FLUSH TABLES WITH READ LOCK`](https://dev.mysql.com/doc/refman/8.0/en/flush.html#flush-tables-with-read-lock) to temporarily interrupt the DML and DDL operations of the replica database, to ensure the global consistency of the backup connection, and to record the binlog position (POS) information. The lock is released after all backup connections start transactions. It is recommended to perform full backups during off-peak hours or on the MySQL replica database. - `snapshot`: Get a consistent snapshot of the specified timestamp and export it.