-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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: fix data race on the IndexMergeReaderExecutor #39513
executor: fix data race on the IndexMergeReaderExecutor #39513
Conversation
[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. |
/check-issue-triage-complete |
executor/index_merge_reader.go
Outdated
return nil, err | ||
} | ||
e.tableRequestMu.Unlock() |
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.
Wrapping these lines as a dedicated function seems safer and more go-style:
(e *IndexMergeReaderExecutor) constructDistExec() {
e.Lock()
defer e.Unlock()
constructDistExec(e.ctx, e.tblPlans)
}
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.
Have fixed.
Signed-off-by: Weizhen Wang <[email protected]>
Signed-off-by: Weizhen Wang <[email protected]>
c365e08
to
76e8887
Compare
executor/index_merge_reader.go
Outdated
err = func() error { | ||
e.tableRequestMu.Lock() | ||
defer e.tableRequestMu.Unlock() | ||
tableReaderExec.dagPB.Executors, err = constructDistExec(e.ctx, e.tblPlans) |
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.
Maybe we can construct DistExec
in IndexMergeExec.Open()
, so no need to use lock?
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.
Done
Signed-off-by: Weizhen Wang <[email protected]>
Signed-off-by: Weizhen Wang <[email protected]>
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 3e3897f
|
/run-check-dev |
TiDB MergeCI notify🔴 Bad News! New failing [1] after this pr merged.
|
Signed-off-by: Weizhen Wang [email protected]
What problem does this PR solve?
Issue Number: close #39514
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.