-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Improve][Connector-V2] Optimize dialect selection in jdbc #8820
Conversation
...a/org/apache/seatunnel/connectors/seatunnel/jdbc/internal/dialect/JdbcDialectLoaderTest.java
Outdated
Show resolved
Hide resolved
9f51fb7
to
23b87c2
Compare
waiting ci passed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR optimizes JDBC dialect selection by introducing a dedicated dialect configuration that takes precedence over URL inspection. Key changes include:
- Adding a new method (dialectFactoryName) across various dialect factory classes.
- Enhancing JdbcDialectLoader to select the appropriate dialect based on an explicit configuration.
- Updating configuration classes and documentation to support the new dialect option.
Reviewed Changes
Copilot reviewed 40 out of 40 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
connector-jdbc/internal/dialect/* | Adds the dialectFactoryName() method to all dialect factories, returning the corresponding identifier from DatabaseIdentifier. |
JdbcDialectLoader.java | Overloads and adjusts the load() method to allow explicit selection via a new dialect parameter. |
JdbcOptions.java, JdbcConnectionConfig.java | Introduces a new configuration option ("dialect") to support explicit dialect selection. |
docs/* | Updates documentation to reflect the new dialect configuration option. |
Comments suppressed due to low confidence (1)
seatunnel-connectors-v2/connector-jdbc/src/main/java/org/apache/seatunnel/connectors/seatunnel/jdbc/internal/dialect/JdbcDialectLoader.java:65
- Consider enhancing the check for 'dialect' to also verify that it is not an empty or blank string. For example: 'if (dialect != null && !dialect.trim().isEmpty()) {'.
if (dialect != null) {
@@ -49,6 +49,7 @@ supports query SQL and can achieve projection effect. | |||
| password | String | No | - | password | | |||
| query | String | No | - | Query statement | | |||
| compatible_mode | String | No | - | The compatible mode of database, required when the database supports multiple compatible modes.<br/> For example, when using OceanBase database, you need to set it to 'mysql' or 'oracle'. <br/> when using starrocks, you need set it to `starrocks` | | |||
| dialect | String | No | - | The appointed dialect, if it does not exist, is still obtained according to the url, and the priority is higher than the url. <br/> For example,when using starrocks, you need set it to `starrocks` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] There is a missing space after the comma in 'For example,when using starrocks,'.
| dialect | String | No | - | The appointed dialect, if it does not exist, is still obtained according to the url, and the priority is higher than the url. <br/> For example,when using starrocks, you need set it to `starrocks` | | |
| dialect | String | No | - | The appointed dialect, if it does not exist, is still obtained according to the url, and the priority is higher than the url. <br/> For example, when using starrocks, you need set it to `starrocks` | |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
Purpose of this pull request
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.