-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
executor: open childExec during execution for UnionExec #24899
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rest LGTM
// promised to exit when reaching here (e.childIDChan been closed). | ||
var firstErr error | ||
for i := 0; i <= e.mu.maxOpenedChildID; i++ { | ||
if err := e.children[i].Close(); err != nil && firstErr == nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will close a not opened children cause problems here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@XuHuaiyu PTAL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like maxOpenedChildID
can guarantee all children is opend.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: cc7ac97
|
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-5.1 in PR #25334 |
What problem does this PR solve?
Issue Number: close #21441
re-revert #21561
Problem Summary:
What is changed and how it works?
Proposal: xxx
What's Changed:
Before this commit,
Union
opens all the child executors during theOpen
phase.This increases the overhead of
buildRequest
and the risk of OOM.After this commit, the
Open
of childExec inUnion
is moved to theNext
phase. The childExec be opened simultaneously is limited totidb_executor_concurrency
atmost.How it Works:
Related changes
N/A
Check List
Tests
Suppose we have a table
t
, it contains 100 partitions, each partition contains 10,000,000 tuples.The result of
select * from t;
Before:
After:
The query works fine.
Side effects
tidb_executor_concurrency
.Release note
UnionExec
to reduce the overhead ofUnionExec
.