You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please check the FAQ documentation before raising an issue
Describe the bug (required)
When I use MySQLReader, the url is fixed, for example
val url =
s"jdbc:mysql://${mysqlConfig.host}:${mysqlConfig.port}/${mysqlConfig.database}? useUnicode=true&characterEncoding=utf-8",
But do I want to add more mysql parameters, such as
“useSSL=false&useTimezone=true&serverTimezone=Asia/Shanghai” and so on, it should change the url parameter to a custom configurable parameter
Your Environments (required)
OS: uname -a
Commit id (e.g. a3ffc7d8)
How To Reproduce(required)
Steps to reproduce the behavior:
Step 1
Step 2
Step 3
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered:
Thank you for your question.
The mysql data source encapsulates the URL internally based on open parameters. If you want a more flexible use, maybe you could use the jdbc to import data and it has more complete configurations.
Please check the FAQ documentation before raising an issue
Describe the bug (required)
When I use MySQLReader, the url is fixed, for example
val url =
s"jdbc:mysql://${mysqlConfig.host}:${mysqlConfig.port}/${mysqlConfig.database}? useUnicode=true&characterEncoding=utf-8",
But do I want to add more mysql parameters, such as
“useSSL=false&useTimezone=true&serverTimezone=Asia/Shanghai” and so on, it should change the url parameter to a custom configurable parameter
Your Environments (required)
uname -a
a3ffc7d8
)How To Reproduce(required)
Steps to reproduce the behavior:
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: