[fix] correct rebalance-type FE config key in managing-compute-cluster doc#3693
Merged
morningman merged 1 commit intoMay 19, 2026
Merged
Conversation
…r doc The doc referenced `cloud_default_rebalance_type` in the fe.conf example and the ADMIN SHOW FRONTEND CONFIG example, but no such FE config exists. The real config is `cloud_warm_up_for_rebalance_type` (verified in the apache/doris FE source: Config.java, BalanceTypeEnum.java, ComputeGroup.java). Corrected the key across all affected EN and Chinese versions. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
The
managing-compute-clusterdoc referenced an FE configcloud_default_rebalance_typein two places — thefe.confexample and theADMIN SHOW FRONTEND CONFIGexample — but no such config exists in Doris.The real config is
cloud_warm_up_for_rebalance_type(defaultasync_warmup), verified against the apache/doris FE source: it is defined inConfig.javaand used inBalanceTypeEnum.java,ComputeGroup.java,CloudTabletRebalancer.java, and the cloud regression tests. TheADMIN SET FRONTEND CONFIGexample in the same doc already used the correct key — only the other two references were wrong.Corrected
cloud_default_rebalance_type→cloud_warm_up_for_rebalance_typeacross all affected versions (EN next/4.x, ZH next/4.x; the feature does not exist in 3.x).Test plan
Config.java:cloud_warm_up_for_rebalance_typeexists,cloud_default_rebalance_typedoes not (zero matches repo-wide)ADMIN SETexample and the cloud regression tests usecloud_warm_up_for_rebalance_type