-
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
[Feature][JDBC] Support database/table wildcards scan read #8869
base: dev
Are you sure you want to change the base?
Conversation
...a/org/apache/seatunnel/connectors/seatunnel/jdbc/catalog/sqlserver/SqlServerCatalogTest.java
Outdated
Show resolved
Hide resolved
seatunnel-common/src/main/java/org/apache/seatunnel/common/utils/JdbcUrlUtil.java
Outdated
Show resolved
Hide resolved
default Logger getLogger() { | ||
return null; | ||
} |
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.
why need this?
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.
print logs matched tables
default List<CatalogTable> getTables(ReadonlyConfig config) throws CatalogException {
...
if (getLogger() != null) {
if (tablePaths.isEmpty()) {
getLogger().info("No table matched the pattern: {}", tablePatternStr);
} else {
getLogger()
.info(
"{} tables matched the pattern: {}",
tablePaths.size(),
tablePatternStr);
}
}
return buildCatalogTablesWithErrorCheck(tablePaths.iterator());
}
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.
It's werid.
List<TablePath> tablePaths = new ArrayList<>(); | ||
for (String databaseName : allDatabase) { | ||
tableNames = this.listTables(databaseName); | ||
boolean isOracle = "Oracle".equals(this.name()); |
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.
We should not do this kind special check in api.
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.
fixed
public final class JdbcUrlUtil { | ||
private static final Pattern URL_PATTERN = | ||
Pattern.compile( | ||
"^(?<url>jdbc:.+?//(?<host>.+?):(?<port>\\d+?))(/(?<database>.*?))*(?<suffix>\\?.*)*$"); | ||
|
||
private static final Pattern SQLSERVER_URL_PATTERN = | ||
Pattern.compile( | ||
"^(?<url>jdbc:sqlserver://([a-zA-Z0-9.-]+)(?::(\\d+))?(;(?<param>[^=]+)\\s*=(?<value>[^;]+);?)*)$"); | ||
|
||
private static final Pattern ORACLE_URL_PATTERN = | ||
Pattern.compile( | ||
"^(?<url>jdbc:oracle:thin:@(//)?(?<host>[^:]+):(?<port>\\d+))(/(?<database>.*?))*(?<suffix>\\?.*)*$"); | ||
|
||
private static final Pattern HANA_URL_PATTERN = | ||
Pattern.compile("^(?<url>jdbc:sap://(?<host>[^:]+):(?<port>\\d+)/?(?<params>.*?))$"); |
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.
Change JdbcUrlUtil
as abstract class? Then each implement class can hold pattern by themself.
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.
fixed
964752d
to
72e8dc4
Compare
[Fix][Connector-V2] Fix parse SqlServer JDBC Url error (apache#8784)
72e8dc4
to
1e7f193
Compare
Purpose of this pull request
this pr support databse : mysql , oracle, postgres, mssql
close #8473
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.