Conversation
### What problem does this PR solve? Issue Number: None Related PR: apache#63389 Problem Summary: New sessions currently use `min_scanners_concurrency = 1`. Raise this default to `4` and update its description so regular scans use a higher concurrency floor under the existing scanner-count, concurrency, and memory limits. Serial scans continue to use one scanner. Expression ZoneMap filtering is already enabled by default on master (`enable_expr_zonemap_filter = true`). ### Release note Increase the default `min_scanners_concurrency` from `1` to `4` for new sessions. ### Check List (For Author) - Test: FE unit tests and Checkstyle passed. - `MAVEN_ARGS='-T 48' bash run-fe-ut.sh --run org.apache.doris.qe.SessionVariablesTest,org.apache.doris.qe.VariableMgrTest`: 31 tests, 0 failures/errors/skips. - `mvn -T 48 checkstyle:check -pl fe-core` (from `fe/`): 0 violations. - `git diff --check`: passed. - Behavior changed: Yes. New sessions default to a minimum scanner concurrency of 4. - Does this need documentation: No. The session-variable description is updated with the new default.
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
This was referenced Sep 22, 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.
What problem does this PR solve?
Issue Number: None
Related PR: #63389
Problem Summary:
New sessions currently use
min_scanners_concurrency = 1. Raise this default to4and update its description so regular scans use a higher concurrency floor under the existing scanner-count, concurrency, and memory limits. Serial scans continue to use one scanner.Expression ZoneMap filtering is already enabled by default on master (
enable_expr_zonemap_filter = true).Release note
Increase the default
min_scanners_concurrencyfrom1to4for new sessions.Check List (For Author)
MAVEN_ARGS='-T 48' bash run-fe-ut.sh --run org.apache.doris.qe.SessionVariablesTest,org.apache.doris.qe.VariableMgrTest: 31 tests, 0 failures/errors/skips.mvn -T 48 checkstyle:check -pl fe-core(fromfe/): 0 violations.git diff --check: passed.