-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[opt](Nereids) support defer materialization with project #47661
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
Merged
Conversation
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
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 31476 ms |
TPC-DS: Total hot run time: 189911 ms |
d3cfaed to
32ad351
Compare
Contributor
Author
|
run buildall |
32ad351 to
9c0511a
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 32074 ms |
TPC-DS: Total hot run time: 183167 ms |
9c0511a to
7bf52dc
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 31361 ms |
TPC-DS: Total hot run time: 189728 ms |
7bf52dc to
dc5d98a
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 31309 ms |
TPC-DS: Total hot run time: 190083 ms |
f8d47fc to
cd7fa56
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 31683 ms |
TPC-DS: Total hot run time: 183529 ms |
ClickBench: Total hot run time: 31.11 s |
16 tasks
lzyy2024
pushed a commit
to lzyy2024/doris
that referenced
this pull request
Feb 21, 2025
### What problem does this PR solve? Problem Summary: 1. Because defer materialization in BE do not support project on scan node, so we use a little trick to do projection on last fragment's OutputExprs. 2. fix core when table use partial column row store, introduced by apache#34089 thrift error, reason=No more data to read.F20250211 12:07:07.526710 15029400 rowid_fetcher.cpp:410] Check failed: tablet->tablet_schema()->has_row_store_for_all_columns() *** Check failure stack trace: *** @ 0x10ddd2830 google::LogMessageFatal::~LogMessageFatal() @ 0x10ddce834 google::LogMessageFatal::~LogMessageFatal() @ 0x102a961a8 doris::RowIdStorageReader::read_by_rowids() @ 0x103938624 std::__1::__function::__func<>::operator()() @ 0x103922390 doris::WorkThreadPool<>::work_thread() @ 0x1039228fc std::__1::__thread_proxy<>() @ 0x18300f2e4 _pthread_start
16 tasks
koarz
pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
### What problem does this PR solve? Problem Summary: 1. Because defer materialization in BE do not support project on scan node, so we use a little trick to do projection on last fragment's OutputExprs. 2. fix core when table use partial column row store, introduced by apache#34089 thrift error, reason=No more data to read.F20250211 12:07:07.526710 15029400 rowid_fetcher.cpp:410] Check failed: tablet->tablet_schema()->has_row_store_for_all_columns() *** Check failure stack trace: *** @ 0x10ddd2830 google::LogMessageFatal::~LogMessageFatal() @ 0x10ddce834 google::LogMessageFatal::~LogMessageFatal() @ 0x102a961a8 doris::RowIdStorageReader::read_by_rowids() @ 0x103938624 std::__1::__function::__func<>::operator()() @ 0x103922390 doris::WorkThreadPool<>::work_thread() @ 0x1039228fc std::__1::__thread_proxy<>() @ 0x18300f2e4 _pthread_start
koarz
pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
…ache#48747) ### What problem does this PR solve? Related PR: apache#47661, apache#22487 Problem Summary: after this PR we support: 1. TopN(Scan) 2. Project(TopN(Project(Scan))) 3. TopN(Filter(Scan)) 4. TopN(Project(Filter(Scan))) 5. Project(TopN(Project(Filter(Scan))))
morrySnow
added a commit
that referenced
this pull request
Jun 20, 2025
morrySnow
added a commit
that referenced
this pull request
Jun 20, 2025
morrySnow
added a commit
that referenced
this pull request
Jun 20, 2025
morrySnow
added a commit
that referenced
this pull request
Jun 20, 2025
morrySnow
added a commit
to morrySnow/incubator-doris
that referenced
this pull request
Jun 30, 2025
dataroaring
pushed a commit
to morrySnow/incubator-doris
that referenced
this pull request
Jul 9, 2025
dataroaring
pushed a commit
that referenced
this pull request
Jul 10, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
approved
Indicates a PR has been approved by one committer.
dev/3.0.7-merged
dev/3.1.0-merged
reviewed
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?
Problem Summary:
Because defer materialization in BE do not support project on scan node, so we use a little trick to do projection on last fragment's OutputExprs.
fix core when table use partial column row store, introduced by [Feature](Row store) support column group with store row format for partial columns of table #34089
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)