Uh oh!
There was an error while loading. Please reload this page.
[feature](variant) add variant doc mode - #59183
Conversation
hello-stephen
commented
Dec 19, 2025
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
csun5285
commented
Dec 19, 2025
run buildall |
doris-robot
commented
Dec 19, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
csun5285
commented
Dec 19, 2025
run buildall |
hello-stephen
commented
Dec 19, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Dec 19, 2025
FE Regression Coverage ReportIncrement line coverage |
csun5285
commented
Dec 22, 2025
run buildall |
doris-robot
commented
Dec 22, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Dec 22, 2025
FE UT Coverage ReportIncrement line coverage |
csun5285
commented
Dec 22, 2025
run p0 10 |
doris-robot
commented
Dec 22, 2025
TPC-H: Total hot run time: 36375 ms |
doris-robot
commented
Dec 22, 2025
TPC-DS: Total hot run time: 180018 ms |
doris-robot
commented
Dec 22, 2025
ClickBench: Total hot run time: 27.17 s |
hello-stephen
commented
Dec 22, 2025
FE Regression Coverage ReportIncrement line coverage |
csun5285
commented
Dec 23, 2025
run buildall |
hello-stephen
commented
Dec 23, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Dec 23, 2025
TPC-H: Total hot run time: 35042 ms |
doris-robot
commented
Dec 23, 2025
TPC-DS: Total hot run time: 178720 ms |
doris-robot
commented
Dec 23, 2025
ClickBench: Total hot run time: 28.28 s |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
csun5285
commented
Dec 23, 2025
run p0 10 |
doris-robot
commented
Jan 20, 2026
ClickBench: Total hot run time: 27.99 s |
doris-robot
commented
Jan 20, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Jan 20, 2026
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Jan 20, 2026
FE Regression Coverage ReportIncrement line coverage |
fix ut fix fix case fix rebase case fix
csun5285
commented
Jan 21, 2026
run buildall |
hello-stephen
commented
Jan 21, 2026
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Jan 21, 2026
FE UT Coverage ReportIncrement line coverage |
doris-robot
commented
Jan 21, 2026
TPC-H: Total hot run time: 31732 ms |
doris-robot
commented
Jan 21, 2026
TPC-DS: Total hot run time: 174411 ms |
doris-robot
commented
Jan 21, 2026
ClickBench: Total hot run time: 27.99 s |
hello-stephen
commented
Jan 21, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Jan 21, 2026
FE UT Coverage ReportIncrement line coverage |
hello-stephen
commented
Jan 21, 2026
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
PR approved by at least one committer and no changes requested. |
hello-stephen
commented
Jan 21, 2026
FE Regression Coverage ReportIncrement line coverage |
Uh oh!
There was an error while loading. Please reload this page.
**DOC encoding**: materialize all subcolumns, and additionally keep the original JSON as a “stored field” so queries can quickly return the entire JSON document. doc: apache/doris-website#3253
**DOC encoding**: materialize all subcolumns, and additionally keep the original JSON as a “stored field” so queries can quickly return the entire JSON document. doc: apache/doris-website#3253
**DOC encoding**: materialize all subcolumns, and additionally keep the original JSON as a “stored field” so queries can quickly return the entire JSON document. doc: apache/doris-website#3253
…its queries (#64533) ### What problem does this PR solve? In `regression_test_variant_doc_mode_p2`, `load.groovy` (which creates and loads the `github_events` table) is tagged `nonConcurrent,p2`, while the 76 `sql/*.sql` query cases in the same directory fall back to the path-derived default group `variant_doc_mode_p2` (no `nonConcurrent`). `nonConcurrent` is a **separate pipeline**, so the load step and the queries get routed to different runs/clusters. In the P2 run the load never executes, and every query fails instantly with: ``` Table [github_events] does not exist in database [regression_test_variant_doc_mode_p2] ``` This produced **66 cascade failures in a single branch-4.1 P2 build** (e.g. build #35 / 198091), all from the same root cause. ### Root cause The `nonConcurrent` tag was applied only to `load.groovy`, not to the dependent queries. The correct nonConcurrent sibling (`variant_github_events_nonConcurrent_p2`) encodes it in the **directory name** so the whole suite (load + queries) routes together; `variant_doc_mode_p2` instead split the data-prep away from its queries. The load only sets **session variables** and does no global-state mutation (no `set global` / FE-BE config / debug points), so it does not actually need `nonConcurrent` isolation. ### Fix Drop `nonConcurrent` so `load.groovy` shares the `p2` group/pipeline with its queries. `load.groovy` sorts before `sql/`, runs first, and `github_events` is present when the queries execute. ```diff -suite("test_doc_value_p2", "nonConcurrent,p2"){ +suite("test_doc_value_p2", "p2"){ ``` > Note: the identical structure exists on master (`#59183`); a follow-up there is advisable. ### Release note None 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
What problem does this PR solve?
DOC encoding: materialize all subcolumns, and additionally keep the original JSON as a “stored field” so queries can quickly return the entire JSON document.
doc: apache/doris-website#3253
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)