This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-0.4 in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
commit faecd8ad9c6a41d9a66f8a0acfcf38f7c8bb9dd8 Author: tsreaper <[email protected]> AuthorDate: Wed Apr 26 17:28:59 2023 +0800 [docs][bug] Fix Java API link for MySqlSyncTableAction and MySqlSyncDatabaseAction in cdc-ingestion docs (#1035) --- docs/content/how-to/cdc-ingestion.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/how-to/cdc-ingestion.md b/docs/content/how-to/cdc-ingestion.md index 636b59da0..d2b3efdd7 100644 --- a/docs/content/how-to/cdc-ingestion.md +++ b/docs/content/how-to/cdc-ingestion.md @@ -32,7 +32,7 @@ Paimon supports synchronizing changes from different databases using change data ### Synchronizing Tables -By using [MySqlSyncTableAction](/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. +By using [MySqlSyncTableAction](/docs/{{ .Site.Params.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. To use this feature through `flink run`, run the following shell command. @@ -101,7 +101,7 @@ Example ### Synchronizing Databases -By using [MySqlSyncDatabaseAction](/api/java/org/apache/paimon/flink/action/cdc/mysql/MySqlSyncDatabaseAction) in a Flink DataStream job or directly through `flink run`, users can synchronize the whole MySQL database into one Paimon database. +By using [MySqlSyncDatabaseAction](/docs/{{ .Site.Params.Branch }}/api/java/org/apache/paimon/flink/action/cdc/mysql/MySqlSyncDatabaseAction) in a Flink DataStream job or directly through `flink run`, users can synchronize the whole MySQL database into one Paimon database. To use this feature through `flink run`, run the following shell command.
