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

[Feature][Config] Support nested references to external files in configuration files #8984

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

Conversation

thirsd
Copy link

@thirsd thirsd commented Mar 16, 2025

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?

  1. i have tested unset ref file .
  2. i have tested set ref file and use in mysql to console and sqlite to console.

Check list

thirsd added 4 commits March 15, 2025 20:20
…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"
Copy link
Member

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.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

got it

Copy link
Member

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.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

已经补充了配置优先级。

@liunaijie
Copy link
Member

Please add test case

Comment on lines +346 to +348
```hocon
# 定义 MySQL 连接配置
mysql_prod {
Copy link
Member

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.

Comment on lines +357 to +359

# 定义 Kafka 连接配置
kafka_test {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

@davidzollo davidzollo added the First-time contributor First-time contributor label Mar 27, 2025
Map<String, Map<String, Object>> refMap = new HashMap<>();
// get map element in ref
for (String key : configMap.keySet()) {
Object ref_config = configMap.get(key);
Copy link
Contributor

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.

@@ -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__")
Copy link
Contributor

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?

Copy link
Member

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

@hailin0 hailin0 requested a review from Copilot March 31, 2025 05:17
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 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);

…e/seatunnel/engine/core/parse/MultipleTableJobConfigParser.java

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
@hailin0 hailin0 changed the title Ref config [Feature][Config] Support nested references to external files in configuration files Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api core SeaTunnel core module document First-time contributor First-time contributor Zeta
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants