-
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][Config] Support nested references to external files in configuration files #8984
base: dev
Are you sure you want to change the base?
Conversation
…set path of ref_config, then you can use __st_config_ref_key__ in source\transform\sink to merge ref config.
source { | ||
Jdbc { | ||
__st_config_ref_key__ = "mysql_prod" | ||
query="select * from department" |
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.
From the code, looks if the mysql_prod
ref config also contains query
parameter, it will overwrite the existed query
parameter.
pluginConfig.withoutPath("__st_config_ref_key__").withFallback(refConfig);
Please add the priority for replacements when there are duplicate parameters.
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.
got it
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.
got it
We can just describe it in the document to let use know this thing. Replace behavior is good to me.
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.
已经补充了配置优先级。
…nces and add descriptions of ref configuration and plugin configuration priorities.
Please add test case |
```hocon | ||
# 定义 MySQL 连接配置 | ||
mysql_prod { |
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.
@thirsd Please describe in English here, thanks.
|
||
# 定义 Kafka 连接配置 | ||
kafka_test { |
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.
ditto
Map<String, Map<String, Object>> refMap = new HashMap<>(); | ||
// get map element in ref | ||
for (String key : configMap.keySet()) { | ||
Object ref_config = configMap.get(key); |
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 name the variables in the camelcase style.
...nel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigShadeUtils.java
Show resolved
Hide resolved
@@ -107,4 +107,10 @@ public class EnvCommonOptions { | |||
.mapType() | |||
.noDefaultValue() | |||
.withDescription("Define the worker where the job runs by tag"); | |||
|
|||
public static Option<String> REF_PATH = | |||
Options.key("__st_config_ref_path__") |
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.
__st_config_ref_path__
looks weird, how about naming it to config_ref_path
?
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.
Not surprising, he cannot conflict with normal attributes
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 introduces configuration reference support, allowing users to reuse shared configuration files in their job configurations. Key changes include adding a new environment option for reference config paths, merging plugin and reference configurations in the job parser, and updating tests and documentation to verify and explain the new behavior.
Reviewed Changes
Copilot reviewed 8 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
seatunnel-engine-core/src/main/java/org/apache/seatunnel/engine/core/parse/MultipleTableJobConfigParser.java | Introduces refMaps field and merging logic for reference configs |
seatunnel-engine-client/src/test/java/org/apache/seatunnel/engine/client/MultipleTableJobConfigParserTest.java | Adds tests for parsing job configs using the ref config feature |
seatunnel-core/seatunnel-core-starter/src/test/java/org/apache/seatunnel/core/starter/utils/ConfigShadeTest.java | Extends tests to cover parsing and merging of reference configs |
seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigShadeUtils.java | Adds processing branch to handle configuration references |
seatunnel-api/src/main/java/org/apache/seatunnel/api/options/EnvCommonOptions.java | Adds a new environment option for specifying the ref config file path |
docs/* | Updates both Chinese and English documentation to explain configuration reference functionality |
Files not reviewed (4)
- seatunnel-core/seatunnel-core-starter/src/test/resources/mysql_to_console_by_ref.conf: Language not supported
- seatunnel-core/seatunnel-core-starter/src/test/resources/ref.conf: Language not supported
- seatunnel-engine/seatunnel-engine-client/src/test/resources/fake_to_console_by_ref.conf: Language not supported
- seatunnel-engine/seatunnel-engine-client/src/test/resources/ref.conf: Language not supported
Comments suppressed due to low confidence (1)
seatunnel-engine/seatunnel-engine-core/src/main/java/org/apache/seatunnel/engine/core/parse/MultipleTableJobConfigParser.java:164
- [nitpick] The variable name 'RefPath' does not follow the Java camelCase naming convention. Consider renaming it to 'refPath'.
String RefPath = envOptions.getOptional(EnvCommonOptions.REF_PATH).orElse(null);
...-core/src/main/java/org/apache/seatunnel/engine/core/parse/MultipleTableJobConfigParser.java
Outdated
Show resolved
Hide resolved
…e/seatunnel/engine/core/parse/MultipleTableJobConfigParser.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
thanks to @hailin0 https://github.com/hailin0.
reference the design:
#8945 (comment)
Does this PR introduce any user-facing change?
yes
user can use ref config file to reuse config in job config file.
#8941
How was this patch tested?
Check list
New License Guide
release-note
.