Skip to content
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] jdbc options #9046

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open

Conversation

liunaijie
Copy link
Member

Purpose of this pull request

Does this PR introduce any user-facing change?

How was this patch tested?

Check list

@hailin0 hailin0 requested a review from Copilot March 31, 2025 03:57
Copy link

@Copilot Copilot AI left a 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 pull request migrates JDBC configuration options from the deprecated JdbcOptions to the newly introduced JdbcSourceOptions, JdbcSinkOptions, and JdbcBaseOptions, ensuring consistency across connector components. Key changes include:

  • Updating imports and references across source, sink, catalog, and connection configuration files.
  • Removing the obsolete JdbcOptions class.
  • Adjusting option rule definitions and builder constructions in JdbcConnectionConfig and related classes.

Reviewed Changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated no comments.

Show a summary per file
File Description
JdbcCatalogUtils.java Replaced JdbcOptions.DECIMAL_TYPE_NARROWING with JdbcSourceOptions.DECIMAL_TYPE_NARROWING.
JdbcSourceFactory.java Updated option references from JdbcOptions to JdbcSourceOptions.
JdbcSinkFactory.java Adjusted option references and string replacement constants from JdbcOptions to JdbcSinkOptions.
JdbcSink.java Renamed JdbcOptions.FIELD_IDE to JdbcSinkOptions.FIELD_IDE.
OracleTypeMapper.java Changed reference from JdbcOptions.DECIMAL_TYPE_NARROWING to JdbcSourceOptions.DECIMAL_TYPE_NARROWING.
JdbcSourceTableConfig.java Updated option references for query and partition-related options.
JdbcSourceOptions.java Converted the interface to a class and added new option definitions.
JdbcSourceConfig.java Replaced JdbcOptions references with JdbcSourceOptions throughout the builder.
JdbcSinkOptions.java Introduced a new options class for sink configurations.
JdbcSinkConfig.java Modified builder to use new JdbcSinkOptions.
JdbcOptions.java Removed obsolete JdbcOptions.
JdbcConnectionConfig.java Updated option references; note the explicit override of maxRetries in exactly-once mode.
JdbcBaseOptions.java Introduced common base options for JDBC configuration.
OracleCatalogFactory.java & OracleCatalog.java Updated to use JdbcSourceOptions for driver and decimal type options.
JdbcCatalogOptions.java Adjusted BASE_RULE to use JdbcSourceOptions.DECIMAL_TYPE_NARROWING.
ConnectorOptionCheckTest.java Removed JdbcSinkOptions from the whitelist.
Comments suppressed due to low confidence (1)

seatunnel-connectors-v2/connector-jdbc/src/main/java/org/apache/seatunnel/connectors/seatunnel/jdbc/config/JdbcConnectionConfig.java:72

  • The explicit override of maxRetries to 0 in the exactly-once branch may unintentionally ignore the user-configured value set earlier. Consider revisiting this logic to ensure that the configuration behaves as intended.
builder.maxRetries(0);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant