Skip to content

Commit 644b5c2

Browse files
authored
[FLINK-35431][doc] Migrate references in Flink CDC documentation from Debezium 1.9 to 2.0 to avoid dead links
This closes #3351.
1 parent b33e6a0 commit 644b5c2

File tree

14 files changed

+32
-32
lines changed

14 files changed

+32
-32
lines changed

docs/content.zh/docs/connectors/flink-sources/db2-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ more released versions will be available in the Maven central warehouse.
7878
Setup Db2 server
7979
----------------
8080

81-
Follow the steps in the [Debezium Db2 Connector](https://debezium.io/documentation/reference/1.9/connectors/db2.html#setting-up-db2).
81+
Follow the steps in the [Debezium Db2 Connector](https://debezium.io/documentation/reference/2.0/connectors/db2.html#setting-up-db2).
8282

8383

8484
Notes
@@ -199,7 +199,7 @@ for more detailed information.</td>
199199
<td>String</td>
200200
<td>The session time zone in database server, e.g. "Asia/Shanghai".
201201
It controls how the TIMESTAMP type in Db2 converted to STRING.
202-
See more <a href="https://debezium.io/documentation/reference/1.9/connectors/db2.html#db2-temporal-types">here</a>.
202+
See more <a href="https://debezium.io/documentation/reference/2.0/connectors/db2.html#db2-temporal-types">here</a>.
203203
If not set, then ZoneId.systemDefault() is used to determine the server time zone.
204204
</td>
205205
</tr>
@@ -251,7 +251,7 @@ for more detailed information.</td>
251251
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from
252252
Db2 server.
253253
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
254-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/db2.html#db2-connector-properties">Debezium's Db2 Connector properties</a></td>
254+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/db2.html#db2-connector-properties">Debezium's Db2 Connector properties</a></td>
255255
</tr>
256256
<tr>
257257
<td>scan.incremental.close-idle-reader.enabled</td>

docs/content.zh/docs/connectors/flink-sources/mysql-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ mysql> GRANT SELECT, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.
102102
mysql> FLUSH PRIVILEGES;
103103
```
104104

105-
查看更多用户权限问题请参考 [权限说明](https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-creating-user).
105+
查看更多用户权限问题请参考 [权限说明](https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-creating-user).
106106

107107

108108
注意事项
@@ -306,7 +306,7 @@ Flink SQL> SELECT * FROM orders;
306306
<td>String</td>
307307
<td>数据库服务器中的会话时区, 例如: "Asia/Shanghai".
308308
它控制 MYSQL 中的时间戳类型如何转换为字符串。
309-
更多请参考 <a href="https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-temporal-types"> 这里</a>.
309+
更多请参考 <a href="https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-temporal-types"> 这里</a>.
310310
如果没有设置,则使用ZoneId.systemDefault()来确定服务器时区。
311311
</td>
312312
</tr>
@@ -361,7 +361,7 @@ Flink SQL> SELECT * FROM orders;
361361
<td>String</td>
362362
<td>将 Debezium 的属性传递给 Debezium 嵌入式引擎,该引擎用于从 MySQL 服务器捕获数据更改。
363363
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
364-
查看更多关于 <a href="https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-connector-properties"> Debezium 的 MySQL 连接器属性</a></td>
364+
查看更多关于 <a href="https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-connector-properties"> Debezium 的 MySQL 连接器属性</a></td>
365365
</tr>
366366
<tr>
367367
<td>scan.incremental.close-idle-reader.enabled</td>

docs/content.zh/docs/connectors/flink-sources/oracle-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Overall, the steps for configuring CDB database is quite similar to non-CDB data
234234
exit
235235
```
236236

237-
See more about the [Setting up Oracle](https://debezium.io/documentation/reference/1.9/connectors/oracle.html#setting-up-oracle)
237+
See more about the [Setting up Oracle](https://debezium.io/documentation/reference/2.0/connectors/oracle.html#setting-up-oracle)
238238

239239
How to create an Oracle CDC table
240240
----------------
@@ -401,7 +401,7 @@ Connector Options
401401
<td>String</td>
402402
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from Oracle server.
403403
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
404-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/oracle.html#oracle-connector-properties">Debezium's Oracle Connector properties</a></td>
404+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/oracle.html#oracle-connector-properties">Debezium's Oracle Connector properties</a></td>
405405
</tr>
406406
<tr>
407407
<td>scan.incremental.close-idle-reader.enabled</td>
@@ -509,7 +509,7 @@ Features
509509

510510
### Exactly-Once Processing
511511

512-
The Oracle CDC connector is a Flink Source connector which will read database snapshot first and then continues to read change events with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/1.9/connectors/oracle.html#how-the-oracle-connector-works).
512+
The Oracle CDC connector is a Flink Source connector which will read database snapshot first and then continues to read change events with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/2.0/connectors/oracle.html#how-the-oracle-connector-works).
513513

514514
### Startup Reading Position
515515

docs/content.zh/docs/connectors/flink-sources/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ The following JSON data show the change event in JSON format.
186186
"transaction": null
187187
}
188188
```
189-
**Note:** Please refer [Debezium documentation](https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-events
189+
**Note:** Please refer [Debezium documentation](https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-events
190190
) to know the meaning of each field.
191191

192192
In some cases, users can use the `JsonDebeziumDeserializationSchema(true)` Constructor to enabled include schema in the message. Then the Debezium JSON message may look like this:

docs/content.zh/docs/connectors/flink-sources/postgres-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Connector Options
186186
<td>String</td>
187187
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from Postgres server.
188188
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
189-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/postgresql.html#postgresql-connector-properties">Debezium's Postgres Connector properties</a></td>
189+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/postgresql.html#postgresql-connector-properties">Debezium's Postgres Connector properties</a></td>
190190
</tr>
191191
<tr>
192192
<td>debezium.snapshot.select.statement.overrides</td>
@@ -241,7 +241,7 @@ Connector Options
241241
</div>
242242
<div>
243243

244-
Note: `slot.name` is recommended to set for different tables to avoid the potential `PSQLException: ERROR: replication slot "flink" is active for PID 974` error. See more [here](https://debezium.io/documentation/reference/1.9/connectors/postgresql.html#postgresql-property-slot-name).
244+
Note: `slot.name` is recommended to set for different tables to avoid the potential `PSQLException: ERROR: replication slot "flink" is active for PID 974` error. See more [here](https://debezium.io/documentation/reference/2.0/connectors/postgresql.html#postgresql-property-slot-name).
245245

246246
### Incremental Snapshot Options
247247

@@ -432,7 +432,7 @@ and then PostgreSQL CDC Source assigns the chunks to multiple readers to read th
432432

433433
### Exactly-Once Processing
434434

435-
The Postgres CDC connector is a Flink Source connector which will read database snapshot first and then continues to read binlogs with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/1.9/connectors/postgresql.html#how-the-postgresql-connector-works).
435+
The Postgres CDC connector is a Flink Source connector which will read database snapshot first and then continues to read binlogs with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/2.0/connectors/postgresql.html#how-the-postgresql-connector-works).
436436

437437
### DataStream Source
438438

docs/content.zh/docs/connectors/flink-sources/sqlserver-cdc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Connector Options
217217
<td>String</td>
218218
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from SQLServer.
219219
For example: <code>'debezium.snapshot.mode' = 'initial_only'</code>.
220-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/sqlserver.html#sqlserver-required-connector-configuration-properties">Debezium's SQLServer Connector properties</a></td>
220+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/sqlserver.html#sqlserver-required-connector-configuration-properties">Debezium's SQLServer Connector properties</a></td>
221221
</tr>
222222
<tr>
223223
<td>scan.incremental.close-idle-reader.enabled</td>
@@ -319,7 +319,7 @@ Features
319319

320320
### Exactly-Once Processing
321321

322-
The SQLServer CDC connector is a Flink Source connector which will read database snapshot first and then continues to read change events with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/1.9/connectors/sqlserver.html#how-the-sqlserver-connector-works).
322+
The SQLServer CDC connector is a Flink Source connector which will read database snapshot first and then continues to read change events with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/2.0/connectors/sqlserver.html#how-the-sqlserver-connector-works).
323323

324324
### Startup Reading Position
325325

docs/content.zh/docs/connectors/pipeline-connectors/mysql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ pipeline:
252252
<td>String</td>
253253
<td>将 Debezium 的属性传递给 Debezium 嵌入式引擎,该引擎用于从 MySQL 服务器捕获数据更改。
254254
例如: <code>'debezium.snapshot.mode' = 'never'</code>.
255-
查看更多关于 <a href="https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-connector-properties"> Debezium 的 MySQL 连接器属性</a></td>
255+
查看更多关于 <a href="https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-connector-properties"> Debezium 的 MySQL 连接器属性</a></td>
256256
</tr>
257257
<tr>
258258
<td>scan.incremental.close-idle-reader.enabled</td>

docs/content/docs/connectors/flink-sources/db2-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ You may need to configure the following dependencies manually.
7878
Setup Db2 server
7979
----------------
8080

81-
Follow the steps in the [Debezium Db2 Connector](https://debezium.io/documentation/reference/1.9/connectors/db2.html#setting-up-db2).
81+
Follow the steps in the [Debezium Db2 Connector](https://debezium.io/documentation/reference/2.0/connectors/db2.html#setting-up-db2).
8282

8383

8484
Notes
@@ -199,7 +199,7 @@ for more detailed information.</td>
199199
<td>String</td>
200200
<td>The session time zone in database server, e.g. "Asia/Shanghai".
201201
It controls how the TIMESTAMP type in Db2 converted to STRING.
202-
See more <a href="https://debezium.io/documentation/reference/1.9/connectors/db2.html#db2-temporal-types">here</a>.
202+
See more <a href="https://debezium.io/documentation/reference/2.0/connectors/db2.html#db2-temporal-types">here</a>.
203203
If not set, then ZoneId.systemDefault() is used to determine the server time zone.
204204
</td>
205205
</tr>
@@ -251,7 +251,7 @@ for more detailed information.</td>
251251
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from
252252
Db2 server.
253253
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
254-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/db2.html#db2-connector-properties">Debezium's Db2 Connector properties</a></td>
254+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/db2.html#db2-connector-properties">Debezium's Db2 Connector properties</a></td>
255255
</tr>
256256
<tr>
257257
<td>scan.incremental.close-idle-reader.enabled</td>

docs/content/docs/connectors/flink-sources/mysql-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ mysql> GRANT SELECT, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.
9696
mysql> FLUSH PRIVILEGES;
9797
```
9898

99-
See more about the [permission explanation](https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-creating-user).
99+
See more about the [permission explanation](https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-creating-user).
100100

101101

102102
Notes
@@ -304,7 +304,7 @@ Connector Options
304304
<td>String</td>
305305
<td>The session time zone in database server, e.g. "Asia/Shanghai".
306306
It controls how the TIMESTAMP type in MYSQL converted to STRING.
307-
See more <a href="https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-temporal-types">here</a>.
307+
See more <a href="https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-temporal-types">here</a>.
308308
If not set, then ZoneId.systemDefault() is used to determine the server time zone.
309309
</td>
310310
</tr>
@@ -359,7 +359,7 @@ During a snapshot operation, the connector will query each included table to pro
359359
<td>String</td>
360360
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from MySQL server.
361361
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
362-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/mysql.html#mysql-connector-properties">Debezium's MySQL Connector properties</a></td>
362+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/mysql.html#mysql-connector-properties">Debezium's MySQL Connector properties</a></td>
363363
</tr>
364364
<tr>
365365
<td>scan.incremental.close-idle-reader.enabled</td>

docs/content/docs/connectors/flink-sources/oracle-cdc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Overall, the steps for configuring CDB database is quite similar to non-CDB data
235235
exit
236236
```
237237

238-
See more about the [Setting up Oracle](https://debezium.io/documentation/reference/1.9/connectors/oracle.html#setting-up-oracle)
238+
See more about the [Setting up Oracle](https://debezium.io/documentation/reference/2.0/connectors/oracle.html#setting-up-oracle)
239239

240240
How to create an Oracle CDC table
241241
----------------
@@ -402,7 +402,7 @@ Connector Options
402402
<td>String</td>
403403
<td>Pass-through Debezium's properties to Debezium Embedded Engine which is used to capture data changes from Oracle server.
404404
For example: <code>'debezium.snapshot.mode' = 'never'</code>.
405-
See more about the <a href="https://debezium.io/documentation/reference/1.9/connectors/oracle.html#oracle-connector-properties">Debezium's Oracle Connector properties</a></td>
405+
See more about the <a href="https://debezium.io/documentation/reference/2.0/connectors/oracle.html#oracle-connector-properties">Debezium's Oracle Connector properties</a></td>
406406
</tr>
407407
<tr>
408408
<td>scan.incremental.close-idle-reader.enabled</td>
@@ -510,7 +510,7 @@ Features
510510

511511
### Exactly-Once Processing
512512

513-
The Oracle CDC connector is a Flink Source connector which will read database snapshot first and then continues to read change events with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/1.9/connectors/oracle.html#how-the-oracle-connector-works).
513+
The Oracle CDC connector is a Flink Source connector which will read database snapshot first and then continues to read change events with **exactly-once processing** even failures happen. Please read [How the connector works](https://debezium.io/documentation/reference/2.0/connectors/oracle.html#how-the-oracle-connector-works).
514514

515515
### Startup Reading Position
516516

0 commit comments

Comments
 (0)