Skip to content

Commit

Permalink
br: change a note format to fix a display issue (pingcap#4663)
Browse files Browse the repository at this point in the history
* br: change a note format to fix a display issue

* Update br/backup-and-restore-tool.md
  • Loading branch information
TomShawn authored Oct 12, 2020
1 parent 97cf277 commit 8e7c582
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions br/backup-and-restore-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,18 +122,16 @@ BR 由多层命令组成。目前,BR 包含 `backup`、`restore` 和 `version`

使用 `br backup` 命令来备份集群数据。可选择添加 `full``table` 子命令来指定备份的范围:全部集群数据或单张表的数据。

> **注意:**
>
> 如果 BR 的版本低于 v4.0.3,而且备份时间可能超过设定的 [`tikv_gc_life_time`](/garbage-collection-configuration.md#tikv_gc_life_time)(默认 `10m0s`,即表示 10 分钟),需要手动将该参数调大。
>
> 例如,将 `tikv_gc_life_time` 调整为 `720h`
>
> {{< copyable "sql" >}}
>
> ```sql
> mysql -h${TiDBIP} -P4000 -u${TIDB_USER} ${password_str} -Nse \
> "update mysql.tidb set variable_value='720h' where variable_name='tikv_gc_life_time'";
> ```
如果 BR 的版本低于 v4.0.3,而且备份时间可能超过设定的 [`tikv_gc_life_time`](/garbage-collection-configuration.md#tikv_gc_life_time)(默认 `10m0s`,即表示 10 分钟),需要手动将该参数调大。

例如,将 `tikv_gc_life_time` 调整为 `720h`

{{< copyable "sql" >}}

```sql
mysql -h${TiDBIP} -P4000 -u${TIDB_USER} ${password_str} -Nse \
"update mysql.tidb set variable_value='720h' where variable_name='tikv_gc_life_time'";
```

自 v4.0.3 起 BR 已经支持自适应 GC,无需手动调整 `tikv_gc_life_time`.

Expand Down

0 comments on commit 8e7c582

Please sign in to comment.