-
Notifications
You must be signed in to change notification settings - Fork 285
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][seatunnel-datasource]: Add doris data source plugin #244
base: main
Are you sure you want to change the base?
Conversation
This is awesome - so looking forward to this! |
Doris: | ||
businessMode: | ||
- DATA_INTEGRATION | ||
- DATA_REPLICA |
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.
As per the 2.3.8 documentation Doris does not support stream so DATA_REPLICA should not be added here
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.
Thanks
@@ -83,6 +87,10 @@ public static String replaceJobConfigPlaceholders( | |||
String escapeCharacter = matcher.group(1); | |||
String placeholderName = matcher.group(2); | |||
|
|||
if (SKIP_MATCH_KEY.contains(placeholderName.toUpperCase())) { |
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.
What is the scenario, why want to skip placeholder pattern maching?
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.
SEATUNEL has several placeholders for the sink in version 2.3.8, such as table_name. Details: https://seatunnel.apache.org/docs/2.3.8/concept/sink-options-placeholders
Purpose of this pull request
Check list
New License Guide