Carl-Zhou-CN commented on issue #6680:
URL: https://github.com/apache/seatunnel/issues/6680#issuecomment-2048778837

   It must be a configuration error
   eg:
   `env {
     # You can set engine configuration here
     parallelism = 1
     job.mode = "STREAMING"
     checkpoint.interval = 5000
   }
   
   source {
     # This is a example source plugin **only for test and demonstrate the 
feature source plugin**
     Oracle-CDC {
       result_table_name = "customers"
       username = "system"
       password = "top_secret"
       database-names = ["ORCLCDB"]
       schema-names = ["DEBEZIUM"]
       table-names = ["ORCLCDB.DEBEZIUM.FULL_TYPES"]
       base-url = "jdbc:oracle:thin:@oracle-host:1521/ORCLCDB"
       source.reader.close.timeout = 120000
       connection.pool.size = 1
       debezium {
          # log.mining.strategy = "online_catalog"
          # log.mining.continuous.mine = true
           database.oracle.jdbc.timezoneAsRegion = "false"
       }
     }
   }
   
   transform {
   }
   
   sink {
   Jdbc {
     source_table_name = "customers"
     driver = "oracle.jdbc.driver.OracleDriver"
     url = "jdbc:oracle:thin:@oracle-host:1521/ORCLCDB"
     user = "system"
     password = "top_secret"
     generate_sink_sql = true
     database = "ORCLCDB"
     table = "DEBEZIUM.SINK_FULL_TYPES"
     batch_size = 1
     primary_keys = ["ID"]
     connection.pool.size = 1
   }
   }`


-- 
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