Skip to content

Commit

Permalink
bump version for v6.1.6 (pingcap#13679)
Browse files Browse the repository at this point in the history
  • Loading branch information
ran-huang authored Apr 12, 2023
1 parent ddae909 commit bd75e37
Show file tree
Hide file tree
Showing 17 changed files with 47 additions and 47 deletions.
8 changes: 4 additions & 4 deletions br/backup-and-restore-use-cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ title: BR 备份与恢复场景示例

### 集群版本

* TiDB:v6.1.5
* TiKV:v6.1.5
* PD:v6.1.5
* BR:v6.1.5
* TiDB:v6.1.6
* TiKV:v6.1.6
* PD:v6.1.6
* BR:v6.1.6

> **注意:**
>
Expand Down
2 changes: 1 addition & 1 deletion check-before-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ sudo yum -y install numactl
1. 使用 TiUP 安装 TiDB 集群,参考[使用 TiUP 部署 TiDB 集群](/production-deployment-using-tiup.md)完成 `tidb-test` 集群的部署。如果本地已有集群,可跳过这一步。
```bash
tiup cluster deploy tidb-test v6.1.5 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
tiup cluster deploy tidb-test v6.1.6 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
```
2. 执行 `tiup cluster exec` 命令,以 `sudo` 权限在 `tidb-test` 集群所有目标主机上安装 NUMA。
Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-proxysql-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ mysql -u root -h 127.0.0.1 -P 6033 -e "SELECT VERSION()"
+--------------------+
| VERSION() |
+--------------------+
| 5.7.25-TiDB-v6.1.5 |
| 5.7.25-TiDB-v6.1.6 |
+--------------------+
```
Expand Down
2 changes: 1 addition & 1 deletion dm/quick-start-create-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ docker run --rm --name mysql-3307 -p 3307:3307 -e MYSQL_ALLOW_EMPTY_PASSWORD=tru
{{< copyable "shell-regular" >}}

```bash
wget https://download.pingcap.org/tidb-community-server-v6.1.5-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-community-server-v6.1.6-linux-amd64.tar.gz
tar -xzvf tidb-latest-linux-amd64.tar.gz
mv tidb-latest-linux-amd64/bin/tidb-server ./
./tidb-server -P 4000 --store mocktikv --log-file "./tidb.log" &
Expand Down
2 changes: 1 addition & 1 deletion pd-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ PD Control 是 PD 的命令行工具,用于获取集群状态信息和调整

> **注意:**
>
> 下载链接中的 `{version}` 为 TiDB 的版本号。例如 `v6.1.5` 版本的下载链接为 `https://download.pingcap.org/tidb-community-server-v6.1.5-linux-amd64.tar.gz`
> 下载链接中的 `{version}` 为 TiDB 的版本号。例如 `v6.1.6` 版本的下载链接为 `https://download.pingcap.org/tidb-community-server-v6.1.6-linux-amd64.tar.gz`
### 源码编译

Expand Down
4 changes: 2 additions & 2 deletions production-deployment-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,13 @@ alertmanager_servers:
{{< copyable "shell-regular" >}}

```shell
tiup cluster deploy tidb-test v6.1.5 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
tiup cluster deploy tidb-test v6.1.6 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
```

以上部署示例中:

- `tidb-test` 为部署的集群名称。
- `v6.1.5` 为部署的集群版本,可以通过执行 `tiup list tidb` 来查看 TiUP 支持的最新可用版本。
- `v6.1.6` 为部署的集群版本,可以通过执行 `tiup list tidb` 来查看 TiUP 支持的最新可用版本。
- 初始化配置文件为 `topology.yaml`
- `--user root` 表示通过 root 用户登录到目标主机完成集群部署,该用户需要有 ssh 到目标机器的权限,并且在目标机器有 sudo 权限。也可以用其他有 ssh 和 sudo 权限的用户完成部署。
- [-i] 及 [-p] 为可选项,如果已经配置免密登录目标机,则不需填写。否则选择其一即可,[-i] 为可登录到目标机的 root 用户(或 --user 指定的其他用户)的私钥,也可使用 [-p] 交互式输入该用户的密码。
Expand Down
8 changes: 4 additions & 4 deletions quick-start-with-tidb.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 Ti
{{< copyable "shell-regular" >}}

```shell
tiup playground v6.1.5 --db 2 --pd 3 --kv 3
tiup playground v6.1.6 --db 2 --pd 3 --kv 3
```

上述命令会在本地下载并启动某个版本的集群(例如 v6.1.5)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:
上述命令会在本地下载并启动某个版本的集群(例如 v6.1.6)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:

```log
CLUSTER START SUCCESSFULLY, Enjoy it ^-^
Expand Down Expand Up @@ -197,10 +197,10 @@ TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 Ti
{{< copyable "shell-regular" >}}

```shell
tiup playground v6.1.5 --db 2 --pd 3 --kv 3
tiup playground v6.1.6 --db 2 --pd 3 --kv 3
```

上述命令会在本地下载并启动某个版本的集群(例如 v6.1.5)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:
上述命令会在本地下载并启动某个版本的集群(例如 v6.1.6)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:

```log
CLUSTER START SUCCESSFULLY, Enjoy it ^-^
Expand Down
2 changes: 1 addition & 1 deletion scale-tidb-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ Starting /root/.tiup/components/cluster/v1.10.0/cluster display <cluster-name>

TiDB Cluster: <cluster-name>

TiDB Version: v6.1.5
TiDB Version: v6.1.6

ID Role Host Ports Status Data Dir Deploy Dir

Expand Down
4 changes: 2 additions & 2 deletions ticdc/manage-ticdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ title: TiCDC 运维操作及任务管理

## 使用 TiUP 升级 TiCDC

本部分介绍如何使用 TiUP 来升级 TiCDC 集群。在以下例子中,假设需要将 TiCDC 组件和整个 TiDB 集群升级到 v6.1.5
本部分介绍如何使用 TiUP 来升级 TiCDC 集群。在以下例子中,假设需要将 TiCDC 组件和整个 TiDB 集群升级到 v6.1.6

{{< copyable "shell-regular" >}}

```shell
tiup update --self && \
tiup update --all && \
tiup cluster upgrade <cluster-name> v6.1.5
tiup cluster upgrade <cluster-name> v6.1.6
```

### 升级的注意事项
Expand Down
2 changes: 1 addition & 1 deletion tidb-binlog/get-started-with-tidb-binlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sudo yum install -y mariadb-server
{{< copyable "shell-regular" >}}

```bash
curl -LO https://download.pingcap.org/tidb-community-server-v6.1.5-linux-amd64.tar.gz | tar xzf - &&
curl -LO https://download.pingcap.org/tidb-community-server-v6.1.6-linux-amd64.tar.gz | tar xzf - &&
cd tidb-latest-linux-amd64
```

Expand Down
2 changes: 1 addition & 1 deletion tiflash/create-tiflash-replicas.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ SELECT TABLE_NAME FROM information_schema.tables where TABLE_SCHEMA = "<db_name>
> 上述命令中,需要将 `<CLUSTER_VERSION>` 替换为该集群版本,`<PD_ADDRESS>:2379` 替换为任一 PD 节点的地址。替换后样例为:
>
> ```shell
> tiup ctl:v6.1.5 pd -u http://192.168.1.4:2379 store limit all engine tiflash 60 add-peer
> tiup ctl:v6.1.6 pd -u http://192.168.1.4:2379 store limit all engine tiflash 60 add-peer
> ```

执行完毕后,几分钟内,你将观察到 TiFlash 节点的 CPU 及磁盘 IO 资源占用显著提升,TiFlash 将更快地创建副本。同时,TiKV 节点的 CPU 及磁盘 IO 资源占用也将有所上升。
Expand Down
26 changes: 13 additions & 13 deletions tiup/tiup-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Usage:
tiup cluster [command]
Available Commands:
check 对集群进行预检
check 对集群进行预检
deploy 部署集群
start 启动已部署的集群
stop 停止集群
Expand Down Expand Up @@ -117,20 +117,20 @@ tidb_servers:
...
```

假如我们想要使用 TiDB 的 v6.1.5 版本,集群名字为 `prod-cluster`,则执行以下命令:
假如我们想要使用 TiDB 的 v6.1.6 版本,集群名字为 `prod-cluster`,则执行以下命令:

{{< copyable "shell-regular" >}}

```shell
tiup cluster deploy -p prod-cluster v6.1.5 /tmp/topology.yaml
tiup cluster deploy -p prod-cluster v6.1.6 /tmp/topology.yaml
```

执行过程中会再次确认拓扑结构并提示输入目标机器上的 root 密码(-p 表示使用密码):

```bash
Please confirm your topology:
TiDB Cluster: prod-cluster
TiDB Version: v6.1.5
TiDB Version: v6.1.6
Type Host Ports OS/Arch Directories
---- ---- ----- ------- -----------
pd 172.16.5.134 2379/2380 linux/x86_64 deploy/pd-2379,data/pd-2379
Expand Down Expand Up @@ -173,7 +173,7 @@ tiup cluster list
Starting /root/.tiup/components/cluster/v1.10.0/cluster list
Name User Version Path PrivateKey
---- ---- ------- ---- ----------
prod-cluster tidb v6.1.5 /root/.tiup/storage/cluster/clusters/prod-cluster /root/.tiup/storage/cluster/clusters/prod-cluster/ssh/id_rsa
prod-cluster tidb v6.1.6 /root/.tiup/storage/cluster/clusters/prod-cluster /root/.tiup/storage/cluster/clusters/prod-cluster/ssh/id_rsa
```

## 启动集群
Expand Down Expand Up @@ -201,7 +201,7 @@ tiup cluster display prod-cluster
```
Starting /root/.tiup/components/cluster/v1.10.0/cluster display prod-cluster
TiDB Cluster: prod-cluster
TiDB Version: v6.1.5
TiDB Version: v6.1.6
ID Role Host Ports OS/Arch Status Data Dir Deploy Dir
-- ---- ---- ----- ------- ------ -------- ----------
172.16.5.134:3000 grafana 172.16.5.134 3000 linux/x86_64 Up - deploy/grafana-3000
Expand Down Expand Up @@ -269,7 +269,7 @@ tiup cluster display prod-cluster
```
Starting /root/.tiup/components/cluster/v1.10.0/cluster display prod-cluster
TiDB Cluster: prod-cluster
TiDB Version: v6.1.5
TiDB Version: v6.1.6
ID Role Host Ports OS/Arch Status Data Dir Deploy Dir
-- ---- ---- ----- ------- ------ -------- ----------
172.16.5.134:3000 grafana 172.16.5.134 3000 linux/x86_64 Up - deploy/grafana-3000
Expand Down Expand Up @@ -369,12 +369,12 @@ Global Flags:
-y, --yes 跳过所有的确认步骤
```

例如,把集群升级到 v6.1.5 的命令为:
例如,把集群升级到 v6.1.6 的命令为:

{{< copyable "shell-regular" >}}

```bash
tiup cluster upgrade tidb-test v6.1.5
tiup cluster upgrade tidb-test v6.1.6
```

## 更新配置
Expand Down Expand Up @@ -554,11 +554,11 @@ tiup cluster audit
Starting component `cluster`: /home/tidb/.tiup/components/cluster/v1.10.0/cluster audit
ID Time Command
-- ---- -------
4BLhr0 2023-02-28T23:55:09+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.5 /tmp/topology.yaml
4BKWjF 2023-02-28T23:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.5 /tmp/topology.yaml
4BKVwH 2023-02-28T23:02:08+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.5 /tmp/topology.yaml
4BLhr0 2023-02-28T23:55:09+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.6 /tmp/topology.yaml
4BKWjF 2023-02-28T23:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.6 /tmp/topology.yaml
4BKVwH 2023-02-28T23:02:08+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.6 /tmp/topology.yaml
4BKKH1 2023-02-28T16:39:04+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster destroy test
4BKKDx 2023-02-28T16:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.5 /tmp/topology.yaml
4BKKDx 2023-02-28T16:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.1.6 /tmp/topology.yaml
```

第一列为 audit-id,如果想看某个命令的执行日志,则传入这个 audit-id:
Expand Down
2 changes: 1 addition & 1 deletion tiup/tiup-component-cluster-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tiup cluster deploy <cluster-name> <version> <topology.yaml> [flags]
```

- `<cluster-name>` 表示新集群的名字,不能和现有集群同名
- `<version>` 为要部署的 TiDB 集群版本号,如 `v6.1.5`
- `<version>` 为要部署的 TiDB 集群版本号,如 `v6.1.6`
- `<topology.yaml>` 为事先编写好的[拓扑文件](/tiup/tiup-cluster-topology-reference.md)

## 选项
Expand Down
12 changes: 6 additions & 6 deletions tiup/tiup-component-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ tiup install tidb
tiup install tidb:nightly
```

示例三:使用 TiUP 安装 v6.1.5 版本的 TiKV
示例三:使用 TiUP 安装 v6.1.6 版本的 TiKV

{{< copyable "shell-regular" >}}

```shell
tiup install tikv:v6.1.5
tiup install tikv:v6.1.6
```

## 升级组件
Expand Down Expand Up @@ -126,12 +126,12 @@ Flags:

如果想要多次启动同一个组件并复用之前的工作目录,就可以在启动时用 `--tag` 指定相同的名字。指定 tag 后,在实例终止时就*不会自动删除*工作目录,方便下次启动时复用。

示例一:运行 v6.1.5 版本的 TiDB
示例一:运行 v6.1.6 版本的 TiDB

{{< copyable "shell-regular" >}}

```shell
tiup tidb:v6.1.5
tiup tidb:v6.1.6
```

示例二:指定 tag 运行 TiKV
Expand Down Expand Up @@ -217,12 +217,12 @@ component 为要卸载的组件名称,version 为要卸载的版本,这两
- 若省略版本,加 `--all` 表示卸载该组件所有版本
- 若版本和组件都省略,则加 `--all` 表示卸载所有组件及其所有版本

示例一:卸载 v6.1.5 版本的 TiDB
示例一:卸载 v6.1.6 版本的 TiDB

{{< copyable "shell-regular" >}}

```shell
tiup uninstall tidb:v6.1.5
tiup uninstall tidb:v6.1.6
```

示例二:卸载所有版本的 TiKV
Expand Down
6 changes: 3 additions & 3 deletions tiup/tiup-mirror.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ tiup mirror clone <target-dir> [global-version] [flags]

如果只想克隆某个组件的某一个版本而不是所有版本,则使用 `--<component>=<version>` 来限定,例如:

- 只想克隆 TiDB 的 v6.1.5 版本,则执行 `tiup mirror clone <target-dir> --tidb v6.1.5`
- 只想克隆 TiDB 的 v6.1.5 版本,以及 TiKV 的所有版本,则执行 `tiup mirror clone <target-dir> --tidb v6.1.5 --tikv all`
- 克隆一个集群的所有组件的 v6.1.5 版本,则执行 `tiup mirror clone <target-dir> v6.1.5`
- 只想克隆 TiDB 的 v6.1.6 版本,则执行 `tiup mirror clone <target-dir> --tidb v6.1.6`
- 只想克隆 TiDB 的 v6.1.6 版本,以及 TiKV 的所有版本,则执行 `tiup mirror clone <target-dir> --tidb v6.1.6 --tikv all`
- 克隆一个集群的所有组件的 v6.1.6 版本,则执行 `tiup mirror clone <target-dir> v6.1.6`

克隆完成后,签名密钥会自动设置。

Expand Down
2 changes: 1 addition & 1 deletion tiup/tiup-playground.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tiup playground ${version} [flags]

- 因为该命令没有指定 playground 的版本,TiUP 会先查找已安装的 playground 的最新版本,假设已安装的 playground 最新版为 v1.10.0,则该命令相当于 tiup playground:v1.10.0
- 如果 playground 从未安装过任何版本的 TiDB/TiKV/PD 组件,TiUP 会先安装这些组件的最新稳定版,然后再启动运行这些组件的实例
- 因为该命令没有指定 TiDB/PD/TiKV 各组件的版本,默认情况下,它会使用各组件的最新发布版本,假设当前为 v6.1.5,则该命令相当于 `tiup playground:1.10.0 v6.1.5`
- 因为该命令没有指定 TiDB/PD/TiKV 各组件的版本,默认情况下,它会使用各组件的最新发布版本,假设当前为 v6.1.6,则该命令相当于 `tiup playground:1.10.0 v6.1.6`
- 因为该命令也没有指定各组件的个数,默认情况下,它会启动由 1 个 TiDB、1 个 TiKV、1 个 PD 和 1 个 TiFlash 实例构成的最小化集群
- 在依次启动完各个 TiDB 组件后,playground 会提醒集群启动成功,并告诉你一些有用的信息,譬如如何通过 MySQL 客户端连接集群、如何访问 [TiDB Dashboard](/dashboard/dashboard-intro.md)

Expand Down
8 changes: 4 additions & 4 deletions upgrade-tidb-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ tiup cluster check <cluster-name> --cluster
tiup cluster upgrade <cluster-name> <version>
```

以升级到 6.1.5 版本为例
以升级到 v6.1.6 为例

{{< copyable "shell-regular" >}}

```
tiup cluster upgrade <cluster-name> v6.1.5
tiup cluster upgrade <cluster-name> v6.1.6
```
> **注意:**
Expand Down Expand Up @@ -220,7 +220,7 @@ tiup cluster display <cluster-name>
```
Cluster type: tidb
Cluster name: <cluster-name>
Cluster version: v6.1.5
Cluster version: v6.1.6
```

## 4. 升级 FAQ
Expand Down Expand Up @@ -266,5 +266,5 @@ tiup cluster upgrade <cluster-name> <version> --force
{{< copyable "" >}}

```
tiup install ctl:v6.1.5
tiup install ctl:v6.1.6
```

0 comments on commit bd75e37

Please sign in to comment.