Skip to content

Commit 9334531

Browse files
authored
v6.5: bump up the latest version to v6.5.11 (#18915)
1 parent 03dc67f commit 9334531

23 files changed

+64
-63
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ With PITR, you can satisfy the preceding requirements.
1717

1818
## Deploy the TiDB cluster and BR
1919

20-
To use PITR, you need to deploy a TiDB cluster >= v6.2.0 and update BR to the same version as the TiDB cluster. This document uses v6.5.10 as an example.
20+
To use PITR, you need to deploy a TiDB cluster >= v6.2.0 and update BR to the same version as the TiDB cluster. This document uses v6.5.11 as an example.
2121

2222
The following table shows the recommended hardware resources for using PITR in a TiDB cluster.
2323

@@ -44,13 +44,13 @@ Install or upgrade BR using TiUP:
4444
- Install:
4545

4646
```shell
47-
tiup install br:v6.5.10
47+
tiup install br:v6.5.11
4848
```
4949

5050
- Upgrade:
5151

5252
```shell
53-
tiup update br:v6.5.10
53+
tiup update br:v6.5.11
5454
```
5555

5656
## Configure backup storage (Amazon S3)

dm/maintain-dm-using-tiup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ All operations above performed on the cluster machine use the SSH client embedde
389389

390390
Then you can use the `--native-ssh` command-line flag to enable the system-native command-line tool:
391391

392-
- Deploy a cluster: `tiup dm deploy <cluster-name> <version> <topo> --native-ssh`. Fill in the name of your cluster for `<cluster-name>`, the DM version to be deployed (such as `v6.5.10`) for `<version>` , and the topology file name for `<topo>`.
392+
- Deploy a cluster: `tiup dm deploy <cluster-name> <version> <topo> --native-ssh`. Fill in the name of your cluster for `<cluster-name>`, the DM version to be deployed (such as `v6.5.11`) for `<version>` , and the topology file name for `<topo>`.
393393
- Start a cluster: `tiup dm start <cluster-name> --native-ssh`.
394394
- Upgrade a cluster: `tiup dm upgrade ... --native-ssh`
395395

dm/quick-start-create-task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To run a TiDB server, use the following command:
7373
{{< copyable "shell-regular" >}}
7474

7575
```bash
76-
wget https://download.pingcap.org/tidb-community-server-v6.5.10-linux-amd64.tar.gz
76+
wget https://download.pingcap.org/tidb-community-server-v6.5.11-linux-amd64.tar.gz
7777
tar -xzvf tidb-latest-linux-amd64.tar.gz
7878
mv tidb-latest-linux-amd64/bin/tidb-server ./
7979
./tidb-server

pd-control.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To obtain `pd-ctl` of the latest version, download the TiDB server installation
2828

2929
> **Note:**
3030
>
31-
> `{version}` in the link indicates the version number of TiDB. For example, the download link for `v6.5.10` in the `amd64` architecture is `https://download.pingcap.org/tidb-community-server-v6.5.10-linux-amd64.tar.gz`.
31+
> `{version}` in the link indicates the version number of TiDB. For example, the download link for `v6.5.11` in the `amd64` architecture is `https://download.pingcap.org/tidb-community-server-v6.5.11-linux-amd64.tar.gz`.
3232
3333
### Compile from source code
3434

production-deployment-using-tiup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -345,13 +345,13 @@ Before you run the `deploy` command, use the `check` and `check --apply` command
345345
{{< copyable "shell-regular" >}}
346346
347347
```shell
348-
tiup cluster deploy tidb-test v6.5.10 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
348+
tiup cluster deploy tidb-test v6.5.11 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
349349
```
350350
351351
In the `tiup cluster deploy` command above:
352352
353353
- `tidb-test` is the name of the TiDB cluster to be deployed.
354-
- `v6.5.10` is the version of the TiDB cluster to be deployed. You can see the latest supported versions by running `tiup list tidb`.
354+
- `v6.5.11` is the version of the TiDB cluster to be deployed. You can see the latest supported versions by running `tiup list tidb`.
355355
- `topology.yaml` is the initialization configuration file.
356356
- `--user root` indicates logging into the target machine as the `root` user to complete the cluster deployment. The `root` user is expected to have `ssh` and `sudo` privileges to the target machine. Alternatively, you can use other users with `ssh` and `sudo` privileges to complete the deployment.
357357
- `[-i]` and `[-p]` are optional. If you have configured login to the target machine without password, these parameters are not required. If not, choose one of the two parameters. `[-i]` is the private key of the root user (or other users specified by `--user`) that has access to the target machine. `[-p]` is used to input the user password interactively.

quick-start-with-tidb.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ As a distributed system, a basic TiDB test cluster usually consists of 2 TiDB in
8080
{{< copyable "shell-regular" >}}
8181

8282
```shell
83-
tiup playground v6.5.10 --db 2 --pd 3 --kv 3
83+
tiup playground v6.5.11 --db 2 --pd 3 --kv 3
8484
```
8585

86-
The command downloads a version cluster to the local machine and starts it, such as v6.5.10. To view the latest version, run `tiup list tidb`.
86+
The command downloads a version cluster to the local machine and starts it, such as v6.5.11. To view the latest version, run `tiup list tidb`.
8787

8888
This command returns the access methods of the cluster:
8989

@@ -201,10 +201,10 @@ As a distributed system, a basic TiDB test cluster usually consists of 2 TiDB in
201201
{{< copyable "shell-regular" >}}
202202

203203
```shell
204-
tiup playground v6.5.10 --db 2 --pd 3 --kv 3
204+
tiup playground v6.5.11 --db 2 --pd 3 --kv 3
205205
```
206206

207-
The command downloads a version cluster to the local machine and starts it, such as v6.5.10. To view the latest version, run `tiup list tidb`.
207+
The command downloads a version cluster to the local machine and starts it, such as v6.5.11. To view the latest version, run `tiup list tidb`.
208208

209209
This command returns the access methods of the cluster:
210210

@@ -436,7 +436,7 @@ Other requirements for the target machine:
436436
```
437437
438438
- `<cluster-name>`: Set the cluster name
439-
- `<version>`: Set the TiDB cluster version, such as `v6.5.10`. You can see all the supported TiDB versions by running the `tiup list tidb` command
439+
- `<version>`: Set the TiDB cluster version, such as `v6.5.11`. You can see all the supported TiDB versions by running the `tiup list tidb` command
440440
- `-p`: Specify the password used to connect to the target machine.
441441
442442
> **Note:**

scale-tidb-using-tiup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ This section exemplifies how to remove a TiKV node from the `10.0.1.5` host.
297297
```
298298
Starting /root/.tiup/components/cluster/v1.11.3/cluster display <cluster-name>
299299
TiDB Cluster: <cluster-name>
300-
TiDB Version: v6.5.10
300+
TiDB Version: v6.5.11
301301
ID Role Host Ports Status Data Dir Deploy Dir
302302
-- ---- ---- ----- ------ -------- ----------
303303
10.0.1.3:8300 cdc 10.0.1.3 8300 Up data/cdc-8300 deploy/cdc-8300

ticdc/deploy-ticdc.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ tiup cluster upgrade <cluster-name> <version> --transfer-timeout 600
9595

9696
> **Note:**
9797
>
98-
> In the preceding command, you need to replace `<cluster-name>` and `<version>` with the actual cluster name and cluster version. For example, the version can be `v6.5.10`.
98+
> In the preceding command, you need to replace `<cluster-name>` and `<version>` with the actual cluster name and cluster version. For example, the version can be `v6.5.11`.
9999

100100
### Upgrade cautions
101101

@@ -152,7 +152,7 @@ See [Enable TLS Between TiDB Components](/enable-tls-between-components.md).
152152

153153
## View TiCDC status using the command-line tool
154154

155-
Run the following command to view the TiCDC cluster status. Note that you need to replace `v<CLUSTER_VERSION>` with the TiCDC cluster version, such as `v6.5.10`:
155+
Run the following command to view the TiCDC cluster status. Note that you need to replace `v<CLUSTER_VERSION>` with the TiCDC cluster version, such as `v6.5.11`:
156156

157157
```shell
158158
tiup ctl:v<CLUSTER_VERSION> cdc capture list --server=http://10.0.10.25:8300

ticdc/ticdc-changefeed-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cdc cli changefeed create --server=http://10.0.10.25:8300 --sink-uri="mysql://ro
1616
```shell
1717
Create changefeed successfully!
1818
ID: simple-replication-task
19-
Info: {"upstream_id":7178706266519722477,"namespace":"default","id":"simple-replication-task","sink_uri":"mysql://root:[email protected]:4000/?time-zone=","create_time":"2024-06-20T15:05:46.679218+08:00","start_ts":438156275634929669,"engine":"unified","config":{"case_sensitive":false,"enable_old_value":true,"force_replicate":false,"ignore_ineligible_table":false,"check_gc_safe_point":true,"enable_sync_point":true,"bdr_mode":false,"sync_point_interval":30000000000,"sync_point_retention":3600000000000,"filter":{"rules":["test.*"],"event_filters":null},"mounter":{"worker_num":16},"sink":{"protocol":"","schema_registry":"","csv":{"delimiter":",","quote":"\"","null":"\\N","include_commit_ts":false},"column_selectors":null,"transaction_atomicity":"none","encoder_concurrency":16,"terminator":"\r\n","date_separator":"none","enable_partition_separator":false},"consistent":{"level":"none","max_log_size":64,"flush_interval":2000,"storage":""}},"state":"normal","creator_version":"v6.5.10"}
19+
Info: {"upstream_id":7178706266519722477,"namespace":"default","id":"simple-replication-task","sink_uri":"mysql://root:[email protected]:4000/?time-zone=","create_time":"2024-09-20T15:05:46.679218+08:00","start_ts":438156275634929669,"engine":"unified","config":{"case_sensitive":false,"enable_old_value":true,"force_replicate":false,"ignore_ineligible_table":false,"check_gc_safe_point":true,"enable_sync_point":true,"bdr_mode":false,"sync_point_interval":30000000000,"sync_point_retention":3600000000000,"filter":{"rules":["test.*"],"event_filters":null},"mounter":{"worker_num":16},"sink":{"protocol":"","schema_registry":"","csv":{"delimiter":",","quote":"\"","null":"\\N","include_commit_ts":false},"column_selectors":null,"transaction_atomicity":"none","encoder_concurrency":16,"terminator":"\r\n","date_separator":"none","enable_partition_separator":false},"consistent":{"level":"none","max_log_size":64,"flush_interval":2000,"storage":""}},"state":"normal","creator_version":"v6.5.11"}
2020
```
2121

2222
- `--changefeed-id`: The ID of the replication task. The format must match the `^[a-zA-Z0-9]+(\-[a-zA-Z0-9]+)*$` regular expression. If this ID is not specified, TiCDC automatically generates a UUID (the version 4 format) as the ID.

ticdc/ticdc-changefeed-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ You can manage a TiCDC cluster and its replication tasks using the command-line
4343

4444
You can also use the HTTP interface (the TiCDC OpenAPI feature) to manage a TiCDC cluster and its replication tasks. For details, see [TiCDC OpenAPI](/ticdc/ticdc-open-api.md).
4545

46-
If your TiCDC is deployed using TiUP, you can start `cdc cli` by running the `tiup ctl:v<CLUSTER_VERSION> cdc` command. Replace `v<CLUSTER_VERSION>` with the TiCDC cluster version, such as `v6.5.10`. You can also run `cdc cli` directly.
46+
If your TiCDC is deployed using TiUP, you can start `cdc cli` by running the `tiup ctl:v<CLUSTER_VERSION> cdc` command. Replace `v<CLUSTER_VERSION>` with the TiCDC cluster version, such as `v6.5.11`. You can also run `cdc cli` directly.

ticdc/ticdc-manage-changefeed.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cdc cli changefeed create --server=http://10.0.10.25:8300 --sink-uri="mysql://ro
1919
```shell
2020
Create changefeed successfully!
2121
ID: simple-replication-task
22-
Info: {"upstream_id":7178706266519722477,"namespace":"default","id":"simple-replication-task","sink_uri":"mysql://root:[email protected]:4000/?time-zone=","create_time":"2024-06-20T15:05:46.679218+08:00","start_ts":438156275634929669,"engine":"unified","config":{"case_sensitive":false,"enable_old_value":true,"force_replicate":false,"ignore_ineligible_table":false,"check_gc_safe_point":true,"enable_sync_point":true,"bdr_mode":false,"sync_point_interval":30000000000,"sync_point_retention":3600000000000,"filter":{"rules":["test.*"],"event_filters":null},"mounter":{"worker_num":16},"sink":{"protocol":"","schema_registry":"","csv":{"delimiter":",","quote":"\"","null":"\\N","include_commit_ts":false},"column_selectors":null,"transaction_atomicity":"none","encoder_concurrency":16,"terminator":"\r\n","date_separator":"none","enable_partition_separator":false},"consistent":{"level":"none","max_log_size":64,"flush_interval":2000,"storage":""}},"state":"normal","creator_version":"v6.5.10"}
22+
Info: {"upstream_id":7178706266519722477,"namespace":"default","id":"simple-replication-task","sink_uri":"mysql://root:[email protected]:4000/?time-zone=","create_time":"2024-09-20T15:05:46.679218+08:00","start_ts":438156275634929669,"engine":"unified","config":{"case_sensitive":false,"enable_old_value":true,"force_replicate":false,"ignore_ineligible_table":false,"check_gc_safe_point":true,"enable_sync_point":true,"bdr_mode":false,"sync_point_interval":30000000000,"sync_point_retention":3600000000000,"filter":{"rules":["test.*"],"event_filters":null},"mounter":{"worker_num":16},"sink":{"protocol":"","schema_registry":"","csv":{"delimiter":",","quote":"\"","null":"\\N","include_commit_ts":false},"column_selectors":null,"transaction_atomicity":"none","encoder_concurrency":16,"terminator":"\r\n","date_separator":"none","enable_partition_separator":false},"consistent":{"level":"none","max_log_size":64,"flush_interval":2000,"storage":""}},"state":"normal","creator_version":"v6.5.11"}
2323
```
2424

2525
## Query the replication task list

ticdc/ticdc-sink-to-cloud-storage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cdc cli changefeed create \
2828
The output is as follows:
2929

3030
```shell
31-
Info: {"upstream_id":7171388873935111376,"namespace":"default","id":"simple-replication-task","sink_uri":"s3://logbucket/storage_test?protocol=canal-json","create_time":"2024-06-20T18:52:05.566016967+08:00","start_ts":437706850431664129,"engine":"unified","config":{"case_sensitive":false,"enable_old_value":true,"force_replicate":false,"ignore_ineligible_table":false,"check_gc_safe_point":true,"enable_sync_point":false,"sync_point_interval":600000000000,"sync_point_retention":86400000000000,"filter":{"rules":["*.*"],"event_filters":null},"mounter":{"worker_num":16},"sink":{"protocol":"canal-json","schema_registry":"","csv":{"delimiter":",","quote":"\"","null":"\\N","include_commit_ts":false},"column_selectors":null,"transaction_atomicity":"none","encoder_concurrency":16,"terminator":"\r\n","date_separator":"none","enable_partition_separator":false},"consistent":{"level":"none","max_log_size":64,"flush_interval":2000,"storage":""}},"state":"normal","creator_version":"v6.5.10"}
31+
Info: {"upstream_id":7171388873935111376,"namespace":"default","id":"simple-replication-task","sink_uri":"s3://logbucket/storage_test?protocol=canal-json","create_time":"2024-09-20T18:52:05.566016967+08:00","start_ts":437706850431664129,"engine":"unified","config":{"case_sensitive":false,"enable_old_value":true,"force_replicate":false,"ignore_ineligible_table":false,"check_gc_safe_point":true,"enable_sync_point":false,"sync_point_interval":600000000000,"sync_point_retention":86400000000000,"filter":{"rules":["*.*"],"event_filters":null},"mounter":{"worker_num":16},"sink":{"protocol":"canal-json","schema_registry":"","csv":{"delimiter":",","quote":"\"","null":"\\N","include_commit_ts":false},"column_selectors":null,"transaction_atomicity":"none","encoder_concurrency":16,"terminator":"\r\n","date_separator":"none","enable_partition_separator":false},"consistent":{"level":"none","max_log_size":64,"flush_interval":2000,"storage":""}},"state":"normal","creator_version":"v6.5.11"}
3232
```
3333

3434
- `--server`: The address of any TiCDC server in the TiCDC cluster.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sudo yum install -y mariadb-server
4242
```
4343

4444
```bash
45-
curl -L https://download.pingcap.org/tidb-community-server-v6.5.10-linux-amd64.tar.gz | tar xzf -
45+
curl -L https://download.pingcap.org/tidb-community-server-v6.5.11-linux-amd64.tar.gz | tar xzf -
4646
cd tidb-latest-linux-amd64
4747
```
4848

tiflash/create-tiflash-replicas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Before TiFlash replicas are added, each TiKV instance performs a full table scan
143143
tiup ctl:v<CLUSTER_VERSION> pd -u http://<PD_ADDRESS>:2379 store limit all engine tiflash 60 add-peer
144144
```
145145

146-
> In the preceding command, you need to replace `v<CLUSTER_VERSION>` with the actual cluster version, such as `v6.5.10` and `<PD_ADDRESS>:2379` with the address of any PD node. For example:
146+
> In the preceding command, you need to replace `v<CLUSTER_VERSION>` with the actual cluster version, such as `v6.5.11` and `<PD_ADDRESS>:2379` with the address of any PD node. For example:
147147
>
148148
> ```shell
149149
> tiup ctl:v6.1.1 pd -u http://192.168.1.4:2379 store limit all engine tiflash 60 add-peer

0 commit comments

Comments
 (0)