liunaijie commented on issue #6423:
URL: https://github.com/apache/seatunnel/issues/6423#issuecomment-1997070475

   hi, you can add `useSSL=false` parameter to jdbc url or add `useSSL = false` 
to config
   
   
   source {
       Jdbc {
           url = 
"jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2b8&useUnicode=true&characterEncoding=UTF-8&rewriteBatchedStatements=true"
           driver = "com.mysql.cj.jdbc.Driver"
           connection_check_timeout_sec = 100
           user = "root"
           password = "123456"
           # Define query logic as required
           query = "select * from type_bin"
           partition_column = "id"
           # Read start boundary
           partition_lower_bound = 1
           # Read end boundary
           partition_upper_bound = 500
           partition_num = 10
           properties {
            **useSSL=false**
           }
       }
   }
   


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