diff --git a/br/br-pitr-guide.md b/br/br-pitr-guide.md index 2b0e7b202b7c3..7750ca6f3bcbd 100644 --- a/br/br-pitr-guide.md +++ b/br/br-pitr-guide.md @@ -117,6 +117,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 restore, the restored table's table mode is set to `restore`, which prevents you from performing any read or write operations. After data restore completes, the table mode is automatically reset to `normal`, and you can read and write the table normally. This improves task stability and data consistency. + ## 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 170df2f4602ee..18a868c310572 100644 --- a/br/br-snapshot-guide.md +++ b/br/br-snapshot-guide.md @@ -103,6 +103,8 @@ Restore Pipeline <-------------------------------------------------------------- *** ["Full Restore success summary"] [total-ranges=20] [ranges-succeed=20] [ranges-failed=0] [merge-ranges=7.546971ms] [split-region=343.594072ms] [restore-files=1.57662s] [default-CF-files=6] [write-CF-files=14] [split-keys=9] [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 restore, the restored table's table mode is set to `restore`, which prevents you from performing any read or write operations. After data restore completes, the table mode is automatically reset to `normal`, and you can read and write the table normally. This improves task stability and data consistency. + ### 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.