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 cad85a9effb82ce64a51bf37b6304ca61539a255 Author: tsreaper <[email protected]> AuthorDate: Wed Apr 26 17:34:44 2023 +0800 [docs][hotfix] Fix Java API link for MySqlSyncTableAction and MySqlSyncDatabaseAction in cdc-ingestion docs (again) --- 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 d2b3efdd7..ee4acc7ed 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](/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. +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. To use this feature through `flink run`, run the following shell command. @@ -101,7 +101,7 @@ Example ### Synchronizing Databases -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. +By using [MySqlSyncDatabaseAction](/docs/{{< param 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.
