branch-4.1: [opt](cloud) Support multiple config files in start.sh #63924#65162
Merged
Conversation
### What problem does this PR solve?
Support loading cloud start environment variables from multiple config
files without forcing deployments to rely on `process_name` as the only
config file name.
This keeps the default behavior of loading `${process_name}.conf`, and
adds support for `CONF_FILES` with comma-separated or
whitespace-separated entries, glob patterns, and absolute paths. Config
files are loaded in order, later files can override earlier files, while
variables already set before config loading keep priority.
Issue Number: close #xxx
Related PR: #xxx
Problem Summary: `cloud/script/start.sh` previously loaded only
`${process_name}.conf`, which made multi-instance or layered config
deployments harder to express.
### Release note
Support specifying multiple cloud config files through `CONF_FILES` in
`cloud/script/start.sh`.
### Check List (For Author)
- Test: Manual test
- Verified default `${process_name}.conf` loading.
- Verified comma-separated and whitespace-separated `CONF_FILES` lists.
- Verified glob pattern loading.
- Verified missing config files are skipped.
- Verified absolute config file paths.
- Verified pre-existing environment variables are not overridden by
config files.
- Ran `bash -n cloud/script/start.sh`.
- Behavior changed: Yes. `cloud/script/start.sh` can now load multiple
config files through `CONF_FILES`.
- Does this need documentation: No
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
|
run buildall |
Contributor
|
skip buildall |
yiguolei
approved these changes
Jul 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cherry-picked from #63924