Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In Talend Cloud, I have a job with a connection to two databases:
Technical details:
My hypothesis is that the tSetKeystore component modifies JVM parameters, which interferes with the MySQL connection. To validate this:
Questions:
The current workaround is suboptimal, as it would require establishing a MySQL connection at the job's beginning, potentially maintaining an unnecessary long-running database connection.
Would you like me to make any further modifications to the request?
Hello @LisaHourmand
My guess is that since tSetKeyStore sets values for javax.net.ssl properties, it affects the components that follow.
Most recent MySQL versions use SSL connections by default.
Since the Java SSL environment has been modified, the MySQL JDBC driver inherits these changes from tSetKeyStore, which can impact the connection.
If possible, try adding the following parameter to the Additional Parameters section:
useSSL=false
This will disable SSL if your connection allows it.
Have a great day!
- Quentin
Hello @LisaHourmand
My guess is that since tSetKeyStore sets values for javax.net.ssl properties, it affects the components that follow.
Most recent MySQL versions use SSL connections by default.
Since the Java SSL environment has been modified, the MySQL JDBC driver inherits these changes from tSetKeyStore, which can impact the connection.
If possible, try adding the following parameter to the Additional Parameters section:
useSSL=false
This will disable SSL if your connection allows it.
Have a great day!
- Quentin