diff --git a/br/br-pitr-guide.md b/br/br-pitr-guide.md index 27aecb8b9e196..19ea71c6fceae 100644 --- a/br/br-pitr-guide.md +++ b/br/br-pitr-guide.md @@ -100,6 +100,8 @@ Restore KV Files <-------------------------------------------------------------- *** ["restore log success summary"] [total-take=xxx.xx] [restore-from={TS}] [restore-to={TS}] [total-kv-count=xxx] [total-size=xxx] ``` +During data restore, the table mode of the target table is automatically set to `restore`. Tables in `restore` mode do not allow any read or write operations. After data restore is complete, the table mode automatically switches back to `normal`, and you can read and write the table normally. This mechanism ensures task stability and data consistency throughout the restore process. + ## Clean up outdated data As described in the [Usage Overview of TiDB Backup and Restore](/br/br-use-overview.md): diff --git a/br/br-snapshot-guide.md b/br/br-snapshot-guide.md index 80e04a2207e4c..d2602b418e2db 100644 --- a/br/br-snapshot-guide.md +++ b/br/br-snapshot-guide.md @@ -83,6 +83,8 @@ Full Restore <------------------------------------------------------------------ *** ["Full Restore success summary"] *** [total-take=4.344617542s] [total-kv=5] [total-kv-size=327B] [average-speed=75.27B/s] [restore-data-size(after-compressed)=4.813kB] [Size=4813] [BackupTS=435844901803917314] ``` +During data restore, the table mode of the target table is automatically set to `restore`. Tables in `restore` mode do not allow any read or write operations. After data restore is complete, the table mode automatically switches back to `normal`, and you can read and write the table normally. This mechanism ensures task stability and data consistency throughout the restore process. + ### Restore a database or a table BR supports restoring partial data of a specified database or table from backup data. This feature allows you to filter out unwanted data and back up only a specific database or table.