This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.0 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit d903d1490350d56d84b5e7693214cc2a08e2f4aa Author: yangjf2019 <[email protected]> AuthorDate: Mon Jan 6 20:44:56 2025 +0800 [doc] Improving the mysql-cdc.md usage Documentation (#4792) --- docs/content/cdc-ingestion/mysql-cdc.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/content/cdc-ingestion/mysql-cdc.md b/docs/content/cdc-ingestion/mysql-cdc.md index e64efde2dc..c071c44f64 100644 --- a/docs/content/cdc-ingestion/mysql-cdc.md +++ b/docs/content/cdc-ingestion/mysql-cdc.md @@ -34,11 +34,15 @@ Download `CDC Bundled Jar` and put them under <FLINK_HOME>/lib/. | Version | Bundled Jar | |---------|-------------------------------------------------------------------------------------------------------------------------| -| 2.3.x | <br/>Only supported in versions below 0.8.2<li> flink-sql-connector-mysql-cdc-2.3.x.jar | -| 2.4.x | <br/>Only supported in versions below 0.8.2<li> flink-sql-connector-mysql-cdc-2.4.x.jar | -| 3.0.x | <br/>Only supported in versions below 0.8.2<li> flink-sql-connector-mysql-cdc-3.0.x.jar <li> flink-cdc-common-3.0.x.jar | | 3.1.x | <li> flink-sql-connector-mysql-cdc-3.1.x.jar <li> mysql-connector-java-8.0.27.jar | +{{< hint danger >}} +Only cdc 3.1+ is supported. + +You can download the `flink-connector-mysql-cdc` jar package by clicking [here](https://repo.maven.apache.org/maven2/org/apache/flink/flink-connector-mysql-cdc/). + +{{< /hint >}} + ## Synchronizing Tables By using [MySqlSyncTableAction](/docs/{{< param Branch >}}/api/java/org/apache/paimon/flink/action/cdc/mysql/MySqlSyncTableAction) in a Flink DataStream job or directly through `flink run`, users can synchronize one or multiple tables from MySQL into one Paimon table.
