bwcxyk commented on issue #8364:
URL: https://github.com/apache/seatunnel/issues/8364#issuecomment-2560604045

   ```
   env {
     parallelism = 1
     job.mode = "STREAMING"
     job.name= mysql_to_clickhouse
   }
   
   source {
     MySQL-CDC {
       base-url = "jdbc:mysql://192.168.0.12:3306/tms"
       username = "root"
       password = "root"
   
       table-names = ["tms.tms_asset_driver"]
       table-names-config = [
         {
           table = "tms.tms_asset_driver"
           primaryKeys = ["ID"]
         }
       ]
     }
   }
   
   sink {
     Clickhouse {
       host = "192.168.0.18:8123"
       database = "tms"
       table = "TMS_ASSET_DRIVER"
       username = "admin"
       password = "admin"
   
       # cdc options
       primary_key = "ID"
       support_upsert = true
       allow_experimental_lightweight_delete = true
     }
   }
   ```
   MySQL-CDC is ok, Maybe it's the Oracle-CDC issue.


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to