Skip to content

Commit 0e47e28

Browse files
authored
v6.2: bump version for tools (pingcap#10830)
1 parent 0ea9c87 commit 0e47e28

9 files changed

+20
-20
lines changed

br/backup-and-restore-use-cases.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ aliases: ['/docs-cn/dev/br/backup-and-restore-use-cases/','/docs-cn/dev/referenc
3939

4040
### 集群版本
4141

42-
* TiDB: v6.1.0
43-
* TiKV: v6.1.0
44-
* PD: v6.1.0
45-
* BR: v6.1.0
42+
* TiDB: v6.2.0
43+
* TiKV: v6.2.0
44+
* PD: v6.2.0
45+
* BR: v6.2.0
4646

4747
> **注意:**
4848
>

dm/quick-start-create-task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ docker run --rm --name mysql-3307 -p 3307:3307 -e MYSQL_ALLOW_EMPTY_PASSWORD=tru
6969
{{< copyable "shell-regular" >}}
7070

7171
```bash
72-
wget https://download.pingcap.org/tidb-community-server-v6.1.0-linux-amd64.tar.gz
72+
wget https://download.pingcap.org/tidb-community-server-v6.2.0-linux-amd64.tar.gz
7373
tar -xzvf tidb-latest-linux-amd64.tar.gz
7474
mv tidb-latest-linux-amd64/bin/tidb-server ./
7575
./tidb-server -P 4000 --store mocktikv --log-file "./tidb.log" &

migrate-from-tidb-to-mysql.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ summary: 了解如何将数据从 TiDB 集群迁移至与 MySQL 兼容的数据
144144
在上游集群中,执行以下命令创建从上游到下游集群的同步链路:
145145

146146
```shell
147-
tiup ctl:v6.1.0 cdc changefeed create --pd=http://127.0.0.1:2379 --sink-uri="mysql://root:@127.0.0.1:3306" --changefeed-id="upstream-to-downstream" --start-ts="434217889191428107"
147+
tiup ctl:v6.2.0 cdc changefeed create --pd=http://127.0.0.1:2379 --sink-uri="mysql://root:@127.0.0.1:3306" --changefeed-id="upstream-to-downstream" --start-ts="434217889191428107"
148148
```
149149

150150
以上命令中:

pd-control.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ PD Control 是 PD 的命令行工具,用于获取集群状态信息和调整
2727

2828
> **注意:**
2929
>
30-
> 下载链接中的 `{version}` 为 TiDB 的版本号。例如 `v6.1.0` 版本的下载链接为 `https://download.pingcap.org/tidb-community-server-v6.1.0-linux-amd64.tar.gz`
30+
> 下载链接中的 `{version}` 为 TiDB 的版本号。例如 `v6.2.0` 版本的下载链接为 `https://download.pingcap.org/tidb-community-server-v6.2.0-linux-amd64.tar.gz`
3131
3232
### 源码编译
3333

quick-start-with-tidb.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 Ti
8383
{{< copyable "shell-regular" >}}
8484

8585
```shell
86-
tiup playground v6.1.0 --db 2 --pd 3 --kv 3
86+
tiup playground v6.2.0 --db 2 --pd 3 --kv 3
8787
```
8888

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

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

202202
```shell
203-
tiup playground v6.1.0 --db 2 --pd 3 --kv 3
203+
tiup playground v6.2.0 --db 2 --pd 3 --kv 3
204204
```
205205

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

208208
```log
209209
CLUSTER START SUCCESSFULLY, Enjoy it ^-^

replicate-data-to-kafka.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ aliases: ['/zh/tidb/dev/replicate-incremental-data-to-kafka/']
5858
2. 创建一个 changefeed,将增量数据输出到 Kafka:
5959

6060
```shell
61-
tiup ctl:v6.1.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://127.0.0.1:9092/kafka-topic-name?protocol=canal-json" --changefeed-id="kafka-changefeed" --config="changefeed.conf"
61+
tiup ctl:v6.2.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://127.0.0.1:9092/kafka-topic-name?protocol=canal-json" --changefeed-id="kafka-changefeed" --config="changefeed.conf"
6262
```
6363

6464
- 如果命令执行成功,将会返回被创建的 changefeed 的相关信息,包含被创建的 changefeed 的 ID 以及相信信息,内容如下:
@@ -74,13 +74,13 @@ aliases: ['/zh/tidb/dev/replicate-incremental-data-to-kafka/']
7474
生产环境下 Kafka 集群通常有多个 broker 节点,你可以在 sink-uri 中配置多个 broker 的访问地址,这有助于提升 changefeed 到 Kafka 集群访问的稳定性,当部分被配置的 Kafka 节点故障的时候,changefeed 依旧可以正常工作。假设 Kafka 集群中有 3 个 broker 节点,地址分别为 127.0.0.1:9092 / 127.0.0.2:9092 / 127.0.0.3:9092,可以参考如下 sink-uri 创建 changefeed:
7575

7676
```shell
77-
tiup ctl:v6.1.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://127.0.0.1:9092,127.0.0.2:9092,127.0.0.3:9092/kafka-topic-name?protocol=canal-json&partition-num=3&replication-factor=1&max-message-bytes=1048576" --config="changefeed.conf"
77+
tiup ctl:v6.2.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://127.0.0.1:9092,127.0.0.2:9092,127.0.0.3:9092/kafka-topic-name?protocol=canal-json&partition-num=3&replication-factor=1&max-message-bytes=1048576" --config="changefeed.conf"
7878
```
7979

8080
3. Changefeed 创建成功后,执行如下命令,查看 changefeed 的状态:
8181

8282
```shell
83-
tiup ctl:v6.1.0 cdc changefeed list --pd="http://127.0.0.1:2379"
83+
tiup ctl:v6.2.0 cdc changefeed list --pd="http://127.0.0.1:2379"
8484
```
8585

8686
可以参考 [TiCDC 运维操作及任务管理](/ticdc/manage-ticdc.md#管理同步任务-changefeed),对 changefeed 状态进行管理。

ticdc/integrate-confluent-using-ticdc.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Confluent 是一个兼容 Apache Kafka 的数据流平台,能够访问、存
9595
2. 创建一个 changefeed,将增量数据输出到 Confluent Cloud:
9696

9797
```shell
98-
tiup ctl:v6.1.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://<broker_endpoint>/ticdc-meta?protocol=avro&replication-factor=3&enable-tls=true&auto-create-topic=true&sasl-mechanism=plain&sasl-user=<broker_api_key>&sasl-password=<broker_api_secret>" --schema-registry="https://<schema_registry_api_key>:<schema_registry_api_secret>@<schema_registry_endpoint>" --changefeed-id="confluent-changefeed" --config changefeed.conf
98+
tiup ctl:v6.2.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://<broker_endpoint>/ticdc-meta?protocol=avro&replication-factor=3&enable-tls=true&auto-create-topic=true&sasl-mechanism=plain&sasl-user=<broker_api_key>&sasl-password=<broker_api_secret>" --schema-registry="https://<schema_registry_api_key>:<schema_registry_api_secret>@<schema_registry_endpoint>" --changefeed-id="confluent-changefeed" --config changefeed.conf
9999
```
100100

101101
将如下字段替换为[第 2 步:创建 Access Key Pair](#第-2-步创建-access-key-pair)中创建和记录的值:
@@ -110,7 +110,7 @@ Confluent 是一个兼容 Apache Kafka 的数据流平台,能够访问、存
110110
其中 `<schema_registry_api_secret>` 需要经过 [HTML URL 编码](https://www.w3schools.com/tags/ref_urlencode.asp)后再替换,替换完毕后示例如下:
111111

112112
```shell
113-
tiup ctl:v6.1.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://xxx-xxxxx.ap-east-1.aws.confluent.cloud:9092/ticdc-meta?protocol=avro&replication-factor=3&enable-tls=true&auto-create-topic=true&sasl-mechanism=plain&sasl-user=L5WWA4GK4NAT2EQV&sasl-password=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --schema-registry="https://7NBH2CAFM2LMGTH7:[email protected]" --changefeed-id="confluent-changefeed" --config changefeed.conf
113+
tiup ctl:v6.2.0 cdc changefeed create --pd="http://127.0.0.1:2379" --sink-uri="kafka://xxx-xxxxx.ap-east-1.aws.confluent.cloud:9092/ticdc-meta?protocol=avro&replication-factor=3&enable-tls=true&auto-create-topic=true&sasl-mechanism=plain&sasl-user=L5WWA4GK4NAT2EQV&sasl-password=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --schema-registry="https://7NBH2CAFM2LMGTH7:[email protected]" --changefeed-id="confluent-changefeed" --config changefeed.conf
114114
```
115115

116116
- 如果命令执行成功,将会返回被创建的 changefeed 的相关信息,包含被创建的 changefeed 的 ID 以及相关信息,内容如下:
@@ -126,7 +126,7 @@ Confluent 是一个兼容 Apache Kafka 的数据流平台,能够访问、存
126126
3. Changefeed 创建成功后,执行如下命令,查看 changefeed 的状态:
127127

128128
```shell
129-
tiup ctl:v6.1.0 cdc changefeed list --pd="http://127.0.0.1:2379"
129+
tiup ctl:v6.2.0 cdc changefeed list --pd="http://127.0.0.1:2379"
130130
```
131131

132132
可以参考 [TiCDC 运维操作及任务管理](/ticdc/manage-ticdc.md)对 changefeed 状态进行管理。

ticdc/manage-ticdc.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ aliases: ['/docs-cn/dev/ticdc/manage-ticdc/','/docs-cn/dev/reference/tools/ticdc
99

1010
## 使用 TiUP 升级 TiCDC
1111

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

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

1616
```shell
1717
tiup update --self && \
1818
tiup update --all && \
19-
tiup cluster upgrade <cluster-name> v6.1.0
19+
tiup cluster upgrade <cluster-name> v6.2.0
2020
```
2121

2222
### 升级的注意事项

tidb-binlog/get-started-with-tidb-binlog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sudo yum install -y mariadb-server
4747
{{< copyable "shell-regular" >}}
4848

4949
```bash
50-
curl -LO https://download.pingcap.org/tidb-community-server-v6.1.0-linux-amd64.tar.gz | tar xzf - &&
50+
curl -LO https://download.pingcap.org/tidb-community-server-v6.2.0-linux-amd64.tar.gz | tar xzf - &&
5151
cd tidb-latest-linux-amd64
5252
```
5353

0 commit comments

Comments
 (0)