2gamayibuxulong opened a new issue, #5377:
URL: https://github.com/apache/seatunnel/issues/5377

   ### 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
   
   I use SQL SERVER CDC to sync SQL SERVER records to mysql,but not worked
   
   ### SeaTunnel Version
   
   2.3.2
   
   ### SeaTunnel Config
   
   ```conf
   env {
     execution.parallelism = 1
     job.mode = "STREAMING"
     checkpoint.interval = 5000
   }
   
   source {
     SqlServer-CDC {
       username = "**"
       password = "***"
       database-names = ["a"]
       table-names = ["a.dbo.b"]
       base-url="jdbc:sqlserver://127.0.0.1:1443;DatabaseName=a"
     }
   }
   
   transform {
     FieldMapper {
       field_mapper = {
           id = id
           lastname = lastname
       }
     }
   }
   
   
   sink {
       jdbc {
           url = "jdbc:mysql://localhost:3306/demo"
           driver = "com.mysql.cj.jdbc.Driver"
           user = "root"
           password = "root"
           generate_sink_sql = true
           # You need to configure both database and table
           database = demo
           table = di_test
           primary_keys = ["id"]
       }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   I use org.apache.seatunnel.example.engine.SeaTunnelEngineExample main method 
to run my conf。
   ```
   
   
   ### Error Exception
   
   ```log
   i changed my data in sqlserver,but mysql data not changed
   ```
   
   
   ### Zeta or Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   java version jdk-11.0.15
   
   ### 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