-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[DSIP-83][datasource-plugin] Add DolphinDB datasource #16962
base: dev
Are you sure you want to change the base?
Conversation
Thanks for opening this pull request! Please check out our contributing guidelines. (https://github.com/apache/dolphinscheduler/blob/dev/docs/docs/en/contribute/join/pull-request.md) |
Related DSIP #16818 |
|
||
String[] hostSeperator = connectionParams.getAddress().split(Constants.DOUBLE_SLASH); | ||
String[] hostPortArray = hostSeperator[hostSeperator.length - 1].split(Constants.COMMA); | ||
dataSourceParamDTO.setPort(Integer.parseInt(hostPortArray[0].split(Constants.COLON)[1])); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
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.
Please add dolphinscheduler-datasource-dolphindb
to https://github.com/apache/dolphinscheduler/blob/dev/config/plugins_config
@@ -57,6 +57,7 @@ | |||
<cron-utils.version>9.1.6</cron-utils.version> | |||
<h2.version>2.2.220</h2.version> | |||
<mysql-connector.version>8.0.33</mysql-connector.version> | |||
<dolphindb-jdbc.version>3.00.0.1</dolphindb-jdbc.version> |
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 not use the latest version 3.00.0.2?
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.
Already added dolphinscheduler-datasource-dolphindb
to plugins_config. The jdbc version used during development and testing is 3.00.0.1.
34168bb
to
28e1bab
Compare
Quality Gate passedIssues Measures |
Purpose of the pull request
close #16818
Brief change log
Verify this pull request
This change added tests and can be verified as follows: