Skip to content

Commit 0323325

Browse files
authored
Merge branch 'apache:master' into master
2 parents fb2e77e + cfaf3cb commit 0323325

File tree

34 files changed

+1066
-222
lines changed

34 files changed

+1066
-222
lines changed

.github/workflows/flink_cdc_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ jobs:
8484
uses: ./.github/workflows/flink_cdc_base.yml
8585
with:
8686
java-versions: "[8]"
87-
flink-versions: "['1.19.2', '1.20.1']"
87+
flink-versions: "['1.19.3', '1.20.3']"
8888
modules: "['pipeline_e2e']"
8989
parallelism: ${{ matrix.parallelism }}
9090
source_e2e:
9191
name: Source E2E Tests
9292
uses: ./.github/workflows/flink_cdc_base.yml
9393
with:
9494
java-versions: "[8]"
95-
flink-versions: "['1.19.2', '1.20.1']"
95+
flink-versions: "['1.19.3', '1.20.3']"
9696
modules: "['source_e2e']"

.github/workflows/flink_cdc_ci_nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
uses: ./.github/workflows/flink_cdc_base.yml
7979
with:
8080
java-versions: "[11]"
81-
flink-versions: "['1.19.2', '1.20.1']"
81+
flink-versions: "['1.19.3', '1.20.3']"
8282
modules: "['pipeline_e2e']"
8383
parallelism: ${{ matrix.parallelism }}
8484
source_e2e:
@@ -87,5 +87,5 @@ jobs:
8787
uses: ./.github/workflows/flink_cdc_base.yml
8888
with:
8989
java-versions: "[11]"
90-
flink-versions: "['1.19.2', '1.20.1']"
90+
flink-versions: "['1.19.3', '1.20.3']"
9191
modules: "['source_e2e']"

docs/content.zh/docs/get-started/quickstart/cdc-up-quickstart-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ Commands:
7373
🐿️ Which Flink version would you like to use? (Press ↑/↓ arrow to move and Enter to select)
7474
1.17.2
7575
1.18.1
76-
1.19.2
77-
‣ 1.20.1
76+
1.19.3
77+
‣ 1.20.3
7878
```
7979

8080
Use the arrow keys to navigate and press Enter to select specified Flink and CDC version, source, and sink connectors.

docs/content.zh/docs/get-started/quickstart/mysql-to-doris.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ under the License.
3333
准备一台已经安装了 Docker 的 Linux 或者 MacOS 电脑。
3434

3535
### 准备 Flink Standalone 集群
36-
1. 下载 [Flink 1.20.1](https://archive.apache.org/dist/flink/flink-1.20.1/flink-1.20.1-bin-scala_2.12.tgz),解压后得到 flink-1.20.1 目录。
37-
使用下面的命令跳转至 Flink 目录下,并且设置 FLINK_HOME 为 flink-1.20.1 所在目录。
36+
1. 下载 [Flink 1.20.3](https://archive.apache.org/dist/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz),解压后得到 flink-1.20.3 目录。
37+
使用下面的命令跳转至 Flink 目录下,并且设置 FLINK_HOME 为 flink-1.20.3 所在目录。
3838

3939
```shell
40-
cd flink-1.20.1
40+
cd flink-1.20.3
4141
```
4242

4343
2. 通过在 conf/config.yaml 配置文件追加下列参数开启 checkpoint,每隔 3 秒做一次 checkpoint。
@@ -340,7 +340,7 @@ Flink CDC 提供了将源表的表结构/数据路由到其他表名的配置,
340340
```shell
341341
docker-compose down
342342
```
343-
在 Flink 所在目录 `flink-1.20.1` 下执行如下命令停止 Flink 集群:
343+
在 Flink 所在目录 `flink-1.20.3` 下执行如下命令停止 Flink 集群:
344344

345345
```shell
346346
./bin/stop-cluster.sh

docs/content.zh/docs/get-started/quickstart/mysql-to-kafka.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ under the License.
3434
准备一台已经安装了 Docker 的 Linux 或者 macOS 电脑。
3535

3636
### 准备 Flink Standalone 集群
37-
1. 下载 [Flink 1.20.1](https://archive.apache.org/dist/flink/flink-1.20.1/flink-1.20.1-bin-scala_2.12.tgz),解压后得到 flink-1.20.1 目录。
38-
使用下面的命令跳转至 Flink 目录下,并且设置 `FLINK_HOME` 为 flink-1.20.1 所在目录。
37+
1. 下载 [Flink 1.20.3](https://archive.apache.org/dist/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz),解压后得到 flink-1.20.3 目录。
38+
使用下面的命令跳转至 Flink 目录下,并且设置 `FLINK_HOME` 为 flink-1.20.3 所在目录。
3939

4040
```shell
41-
tar -zxvf flink-1.20.1-bin-scala_2.12.tgz
42-
exprot FLINK_HOME=$(pwd)/flink-1.20.1
43-
cd flink-1.20.1
41+
tar -zxvf flink-1.20.3-bin-scala_2.12.tgz
42+
exprot FLINK_HOME=$(pwd)/flink-1.20.3
43+
cd flink-1.20.3
4444
```
4545

4646
2. 在 `conf/config.yaml` 配置文件追加下列参数开启检查点,每隔 3 秒进行一次 checkpoint。
@@ -623,7 +623,7 @@ pipeline:
623623
docker compose down
624624
```
625625

626-
在 Flink 所在目录 `flink-1.20.1` 下执行如下命令停止 Flink 集群:
626+
在 Flink 所在目录 `flink-1.20.3` 下执行如下命令停止 Flink 集群:
627627

628628
```shell
629629
./bin/stop-cluster.sh

docs/content.zh/docs/get-started/quickstart/mysql-to-starrocks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ under the License.
3333
准备一台已经安装了 Docker 的 Linux 或者 MacOS 电脑。
3434

3535
### 准备 Flink Standalone 集群
36-
1. 下载 [Flink 1.20.1](https://archive.apache.org/dist/flink/flink-1.20.1/flink-1.20.1-bin-scala_2.12.tgz) ,解压后得到 flink-1.20.1 目录。
37-
使用下面的命令跳转至 Flink 目录下,并且设置 FLINK_HOME 为 flink-1.20.1 所在目录。
36+
1. 下载 [Flink 1.20.3](https://archive.apache.org/dist/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz) ,解压后得到 flink-1.20.3 目录。
37+
使用下面的命令跳转至 Flink 目录下,并且设置 FLINK_HOME 为 flink-1.20.3 所在目录。
3838

3939
```shell
40-
cd flink-1.20.1
40+
cd flink-1.20.3
4141
```
4242

4343
2. 通过在 conf/config.yaml 配置文件追加下列参数开启 checkpoint,每隔 3 秒做一次 checkpoint。
@@ -308,7 +308,7 @@ Flink CDC 提供了将源表的表结构/数据路由到其他表名的配置,
308308
docker-compose down
309309
```
310310

311-
在 Flink 所在目录 `flink-1.20.1` 下执行如下命令停止 Flink 集群:
311+
在 Flink 所在目录 `flink-1.20.3` 下执行如下命令停止 Flink 集群:
312312

313313
```shell
314314
./bin/stop-cluster.sh

docs/content/docs/get-started/quickstart/cdc-up-quickstart-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ Commands:
7373
🐿️ Which Flink version would you like to use? (Press ↑/↓ arrow to move and Enter to select)
7474
1.17.2
7575
1.18.1
76-
1.19.2
77-
‣ 1.20.1
76+
1.19.3
77+
‣ 1.20.3
7878
```
7979

8080
Use the arrow keys to navigate and press Enter to select specified Flink and CDC version, source, and sink connectors.

docs/content/docs/get-started/quickstart/mysql-to-doris.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ without a single line of Java/Scala code or IDE installation.
3535
Prepare a Linux or MacOS computer with Docker installed.
3636

3737
### Prepare Flink Standalone cluster
38-
1. Download [Flink 1.20.1](https://archive.apache.org/dist/flink/flink-1.20.1/flink-1.20.1-bin-scala_2.12.tgz) ,unzip and get flink-1.20.1 directory.
39-
Use the following command to navigate to the Flink directory and set FLINK_HOME to the directory where flink-1.20.1 is located.
38+
1. Download [Flink 1.20.3](https://archive.apache.org/dist/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz) ,unzip and get flink-1.20.3 directory.
39+
Use the following command to navigate to the Flink directory and set FLINK_HOME to the directory where flink-1.20.3 is located.
4040

4141
```shell
42-
cd flink-1.20.1
42+
cd flink-1.20.3
4343
```
4444

4545
2. Enable checkpointing by appending the following parameters to the conf/config.yaml configuration file to perform a checkpoint every 3 seconds.
@@ -345,7 +345,7 @@ After finishing the tutorial, run the following command to stop all containers i
345345
```shell
346346
docker-compose down
347347
```
348-
Run the following command to stop the Flink cluster in the directory of Flink `flink-1.20.1`:
348+
Run the following command to stop the Flink cluster in the directory of Flink `flink-1.20.3`:
349349

350350
```shell
351351
./bin/stop-cluster.sh

docs/content/docs/get-started/quickstart/mysql-to-kafka.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ without a single line of Java/Scala code or IDE installation.
3636
You need a Linux or macOS computer with Docker installed before starting.
3737

3838
### Prepare Flink Standalone cluster
39-
1. Download [Flink 1.20.1](https://archive.apache.org/dist/flink/flink-1.20.1/flink-1.20.1-bin-scala_2.12.tgz), unzip it and enter `flink-1.20.1` directory.
40-
Use the following command to navigate to the Flink directory and set `FLINK_HOME` to the directory where flink-1.20.1 is located.
39+
1. Download [Flink 1.20.3](https://archive.apache.org/dist/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz), unzip it and enter `flink-1.20.3` directory.
40+
Use the following command to navigate to the Flink directory and set `FLINK_HOME` to the directory where flink-1.20.3 is located.
4141

4242
```shell
43-
tar -zxvf flink-1.20.1-bin-scala_2.12.tgz
44-
exprot FLINK_HOME=$(pwd)/flink-1.20.1
45-
cd flink-1.20.1
43+
tar -zxvf flink-1.20.3-bin-scala_2.12.tgz
44+
exprot FLINK_HOME=$(pwd)/flink-1.20.3
45+
cd flink-1.20.3
4646
```
4747

4848
2. Enable checkpointing by appending the following parameters to the `conf/config.yaml` configuration file to perform a checkpoint every 3 seconds.

docs/content/docs/get-started/quickstart/mysql-to-starrocks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ without a single line of Java/Scala code or IDE installation.
3535
Prepare a Linux or MacOS computer with Docker installed.
3636

3737
### Prepare Flink Standalone cluster
38-
1. Download [Flink 1.20.1](https://archive.apache.org/dist/flink/flink-1.20.1/flink-1.20.1-bin-scala_2.12.tgz) ,unzip and get flink-1.20.1 directory.
39-
Use the following command to navigate to the Flink directory and set FLINK_HOME to the directory where flink-1.20.1 is located.
38+
1. Download [Flink 1.20.3](https://archive.apache.org/dist/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz) ,unzip and get flink-1.20.3 directory.
39+
Use the following command to navigate to the Flink directory and set FLINK_HOME to the directory where flink-1.20.3 is located.
4040

4141
```shell
42-
cd flink-1.20.1
42+
cd flink-1.20.3
4343
```
4444

4545
2. Enable checkpointing by appending the following parameters to the conf/config.yaml configuration file to perform a checkpoint every 3 seconds.

0 commit comments

Comments
 (0)