morrySnow commented on code in PR #2033: URL: https://github.com/apache/doris-website/pull/2033#discussion_r1966992814
########## docs/sql-manual/sql-statements/data-modification/load-and-export/CREATE-SYNC-JOB.md: ########## @@ -25,133 +25,111 @@ under the License. --> - ## Description -The data synchronization (Sync Job) function supports users to submit a resident data synchronization job, and incrementally synchronizes the CDC (Change Data Capture) of the user's data update operation in the Mysql database by reading the Binlog log from the specified remote address. Features. - -Currently, the data synchronization job only supports connecting to Canal, obtaining the parsed Binlog data from the Canal Server and importing it into Doris. +The data synchronization (Sync Job) function allows users to submit a persistent data synchronization job. It incrementally synchronizes the CDC (Change Data Capture) of data update operations from a MySQL database by reading the Binlog from a specified remote source. Currently, the synchronization job supports connecting to Canal, obtaining parsed Binlog data from the Canal server, and importing it into Doris. -Users can view the data synchronization job status through [SHOW SYNC JOB](../../../../sql-manual/sql-statements/data-modification/load-and-export/SHOW-SYNC-JOB). +Users can view the status of synchronization jobs via [SHOW SYNC JOB](../../../../sql-manual/sql-statements/data-modification/load-and-export/SHOW-SYNC-JOB). -grammar: +## Syntax ```sql -CREATE SYNC [db.]job_name - ( - channel_desc, - channel_desc - ... - ) +CREATE SYNC [<db>.]<job_name> +(<channel_desc> [, ... ]) +<binlog_desc> + : FROM BINLOG ("<key>" = "<value>" [, ... ]) Review Comment: 这行忘记删掉le -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org