[opt](nereids) refine left semi/anti shortcut cost#37060
Merged
morrySnow merged 2 commits intoapache:masterfrom Jul 3, 2024
Merged
[opt](nereids) refine left semi/anti shortcut cost#37060morrySnow merged 2 commits intoapache:masterfrom
morrySnow merged 2 commits intoapache:masterfrom
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 40092 ms |
TPC-DS: Total hot run time: 174066 ms |
ClickBench: Total hot run time: 30.15 s |
Contributor
Author
|
run buidall |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 40473 ms |
TPC-DS: Total hot run time: 173772 ms |
ClickBench: Total hot run time: 30.59 s |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 39918 ms |
TPC-DS: Total hot run time: 172465 ms |
ClickBench: Total hot run time: 30.55 s |
Contributor
Author
|
run p0 |
19e1511 to
8648516
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 39923 ms |
TPC-DS: Total hot run time: 169117 ms |
ClickBench: Total hot run time: 30.76 s |
morrySnow
previously approved these changes
Jul 2, 2024
Contributor
|
PR approved by at least one committer and no changes requested. |
Contributor
|
PR approved by anyone and no changes requested. |
8648516 to
622dc81
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 39834 ms |
TPC-DS: Total hot run time: 169884 ms |
ClickBench: Total hot run time: 30.38 s |
morrySnow
approved these changes
Jul 3, 2024
Contributor
|
PR approved by at least one committer and no changes requested. |
dataroaring
pushed a commit
that referenced
this pull request
Jul 17, 2024
Current left semi/anti join's cost doesn't consider be's short-cut opt, this pr will refine this part of computing and distinguish the left and right join costs. --------- Co-authored-by: zhongjian.xzj <zhongjian.xzj@zhongjianxzjdeMacBook-Pro.local>
morrySnow
pushed a commit
that referenced
this pull request
Jul 19, 2024
Refine left semi/anti cost computing under short-cut opt, for the case whose semi/anti join has the small left side and big right side, which original solution can't support. This pr reduce the left style cost by reduce the right side cost and improve the possibility of choosing left style joins. Pass the performance test on tpch/tpcds/usercase. previous work: #37060
dataroaring
pushed a commit
that referenced
this pull request
Jul 22, 2024
Refine left semi/anti cost computing under short-cut opt, for the case whose semi/anti join has the small left side and big right side, which original solution can't support. This pr reduce the left style cost by reduce the right side cost and improve the possibility of choosing left style joins. Pass the performance test on tpch/tpcds/usercase. previous work: #37060
Closed
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.
Proposed changes
Current left semi/anti join's cost doesn't consider be's short-cut opt, this pr will refine this part of computing and distinguish the left and right join costs.