From 4b4653bcbb5d7b96253985699831e59e40d3ce1f Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Wed, 27 May 2026 16:16:48 +0900 Subject: [PATCH 1/2] doc: change 'implementation' to 'feature' in snapshot guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The term 'implementation' was likely a direct translation from Chinese '实现' and sounds unnatural in English. This also prevents unnatural translations in other languages, such as '実装' in Japanese. --- br/br-snapshot-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/br/br-snapshot-guide.md b/br/br-snapshot-guide.md index 8bed8406dc767..8db069ffedbb5 100644 --- a/br/br-snapshot-guide.md +++ b/br/br-snapshot-guide.md @@ -7,7 +7,7 @@ summary: This document describes how to back up and restore TiDB snapshots using This document describes how to back up and restore TiDB snapshots using the br command-line tool (hereinafter referred to as `br`). Before backing up and restoring data, you need to [install the br command-line tool](/br/br-use-overview.md#deploy-and-use-br) first. -Snapshot backup is an implementation to back up the entire cluster. It is based on [multi-version concurrency control (MVCC)](/tidb-storage.md#mvcc) and backs up all data in the specified snapshot to a target storage. The size of the backup data is approximately the size of the compressed single replica in the cluster. After the backup is completed, you can restore the backup data to an empty cluster or a cluster that does not contain conflict data (with the same schema or same tables), restore the cluster to the time point of the snapshot backup, and restore multiple replicas according to the cluster replica settings. +Snapshot backup is a feature to back up the entire cluster. It is based on [multi-version concurrency control (MVCC)](/tidb-storage.md#mvcc) and backs up all data in the specified snapshot to a target storage. The size of the backup data is approximately the size of the compressed single replica in the cluster. After the backup is completed, you can restore the backup data to an empty cluster or a cluster that does not contain conflict data (with the same schema or same tables), restore the cluster to the time point of the snapshot backup, and restore multiple replicas according to the cluster replica settings. Besides basic backup and restore, snapshot backup and restore also provides the following features: From 74dac98c9f832cb86de451a74249493a4e716b2b Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Wed, 27 May 2026 16:30:39 +0900 Subject: [PATCH 2/2] Update br/br-snapshot-guide.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- br/br-snapshot-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/br/br-snapshot-guide.md b/br/br-snapshot-guide.md index 8db069ffedbb5..26febaa799c18 100644 --- a/br/br-snapshot-guide.md +++ b/br/br-snapshot-guide.md @@ -7,7 +7,7 @@ summary: This document describes how to back up and restore TiDB snapshots using This document describes how to back up and restore TiDB snapshots using the br command-line tool (hereinafter referred to as `br`). Before backing up and restoring data, you need to [install the br command-line tool](/br/br-use-overview.md#deploy-and-use-br) first. -Snapshot backup is a feature to back up the entire cluster. It is based on [multi-version concurrency control (MVCC)](/tidb-storage.md#mvcc) and backs up all data in the specified snapshot to a target storage. The size of the backup data is approximately the size of the compressed single replica in the cluster. After the backup is completed, you can restore the backup data to an empty cluster or a cluster that does not contain conflict data (with the same schema or same tables), restore the cluster to the time point of the snapshot backup, and restore multiple replicas according to the cluster replica settings. +Snapshot backup allows you to back up the entire cluster. It is based on [multi-version concurrency control (MVCC)](/tidb-storage.md#mvcc) and backs up all data in the specified snapshot to a target storage. The size of the backup data is approximately the size of the compressed single replica in the cluster. After the backup completes, you can restore the backup data to an empty cluster or a cluster that does not contain conflict data (with the same schema or same tables), restore the cluster to the time point of the snapshot backup, and restore multiple replicas according to the cluster replica settings. Besides basic backup and restore, snapshot backup and restore also provides the following features: