-
Notifications
You must be signed in to change notification settings - Fork 702
add full backup ftwrl details in dumpling-overview.md #5444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
/label needs-cherry-pick-5.0 |
dumpling-overview.md
Outdated
@@ -262,7 +262,7 @@ With the above options specified, Dumpling can have a quicker speed of data expo | |||
|
|||
Dumpling uses the `--consistency <consistency level>` 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: | |||
|
|||
- `flush`: Use [`FLUSH TABLES WITH READ LOCK`](https://dev.mysql.com/doc/refman/8.0/en/flush.html#flush-tables-with-read-lock) to ensure 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 backup database, ensure the global consistency of the backup connection, and record POS information. The lock is released after all backup connections start transactions. It is recommended to perform full backups at low business peaks or on the MySQL backup database. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `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 backup database, ensure the global consistency of the backup connection, and record POS information. The lock is released after all backup connections start transactions. It is recommended to perform full backups at low business peaks or on the MySQL backup database. | |
- `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 backup database, ensure the global consistency of the backup connection, and record the binlog postition. The lock is released after all backup connections start transactions. It is recommended to perform full backups at low business valleys or on the MySQL replica database. |
/lgtm |
dumpling-overview.md
Outdated
@@ -262,7 +262,7 @@ With the above options specified, Dumpling can have a quicker speed of data expo | |||
|
|||
Dumpling uses the `--consistency <consistency level>` 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: | |||
|
|||
- `flush`: Use [`FLUSH TABLES WITH READ LOCK`](https://dev.mysql.com/doc/refman/8.0/en/flush.html#flush-tables-with-read-lock) to ensure 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, ensure the global consistency of the backup connection, and record the binlog position information. The lock is released after all backup connections start transactions. It is recommended to perform full backups during off-peak business hours or on the MySQL replica database. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `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, ensure the global consistency of the backup connection, and record the binlog position information. The lock is released after all backup connections start transactions. It is recommended to perform full backups during off-peak business hours or on the MySQL replica database. | |
- `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. |
rest |
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by writing |
Co-authored-by: TomShawn <41534398+TomShawn@users.noreply.github.com>
/merge |
This pull request has been accepted and is ready to merge. Commit hash: c733783
|
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-4.0 in PR #5455 |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-5.0 in PR #5456 |
First-time contributors' checklist
What is changed, added or deleted? (Required)
add full backup ftwrl details
Which TiDB version(s) do your changes apply to? (Required)
What is the related PR or file link(s)?
Do your changes match any of the following descriptions?