cobolbaby opened a new issue, #7904:
URL: https://github.com/apache/seatunnel/issues/7904

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22)
 and found no similar issues.
   
   
   ### What happened
   
   采用 Flink 引擎,取消任务后重新提交 CDC 任务全量重新跑
   
   ### SeaTunnel Version
   
   2.3.8
   
   ### SeaTunnel Config
   
   ```conf
   env {
     # You can set engine configuration here
     execution.parallelism = 1
     job.mode = "STREAMING"
     checkpoint.interval = 60000
     read_limit.bytes_per_second=50000000
     read_limit.rows_per_second=10000
   }
   
   source {
     Postgres-CDC {
       # 源端数据库 JDBC Url
       base-url = "jdbc:postgresql://***/bdc"
       username = "***"
       password = "***"
       database-names = ["bdc"]
       schema-names = ["dw"]
       table-names = ["bdc.dw.fact_cpu_sn", "bdc.dw.dim_cpu_dn"]
       result_table_name = "SQT_PG_BDC_CDC_dw_cpu"
     }
   }
   
   transform {
   
   }
   
   sink {
     jdbc {
       # https://seatunnel.apache.org/docs/2.3.8/connector-v2/sink/Jdbc
       source_table_name = "SQT_PG_BDC_CDC_dw_cpu"
       url = "jdbc:postgresql://***/bdc_test"
       driver = "org.postgresql.Driver"
       user = "***"
       password = "***"
   
       # You need to configure both database and table
       database = "bdc_test"
       table = "dw_sqt.${table_name}"
       primary_keys = ["${primary_key}"]
       schema_save_mode = "IGNORE"
       generate_sink_sql = "true"
     }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   ./bin/start-seatunnel-flink-15-connector-v2.sh --config 
./config/pgcdc2pg_bdc_dw_cpu.conf
   ```
   
   
   ### Error Exception
   
   ```log
   -
   ```
   
   
   ### Zeta or Flink or Spark Version
   
   Flink: 1.18.1
   
   ### Java or Scala Version
   
   _No response_
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


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