chenyz1984 commented on issue #7304:
URL: https://github.com/apache/seatunnel/issues/7304#issuecomment-2574244001

   > Refer to env { parallelism = 1 job.mode = "STREAMING" checkpoint.interval 
= 10000 }
   > 
   > source { Oracle-CDC { result_table_name = "fake" connect.timeout.ms = 
1200000 source.reader.close.timeout = 1200000 base-url = 
"jdbc:oracle:thin:@//localhost:1524/ORCLPDB1" username = "system" password = 
"oracle" database-names = ["ORCLCDB"] schema-names = ["TEST"] table-names = 
["ORCLCDB.TEST.T1"] exactly_once = true
   > 
   > debezium { database.pdb.name = "ORCLPDB1" } } }
   > 
   > sink { console { source_table_name="fake" } }
   
   ```json
   env {
   parallelism = 1
   job.mode = "STREAMING"
   checkpoint.interval = 10000
   }
   
   source {
   Oracle-CDC {
   result_table_name = "fake"
   connect.timeout.ms = 1200000
   source.reader.close.timeout = 1200000
   base-url = "jdbc:oracle:thin:@//localhost:1524/ORCLPDB1"   # How to 
determine whether to use CDB or PDB here
   username = "system"
   password = "oracle"
   database-names = ["ORCLCDB"]     # Here is a PDB name
   schema-names = ["TEST"]
   table-names = ["ORCLCDB.TEST.T1"] # The table is in CDB?
   exactly_once = true
   
   debezium {
   database.pdb.name = "ORCLPDB1" # But why is a PDB used here?
   }
   }
   }
   
   sink {
   console {
   source_table_name="fake"
   }
   }
   ```


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