-
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: use sys session to build view for info_schema.columns
retrieval
#33946
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. |
info_schema.columns
retrieval
Code Coverage Details: https://codecov.io/github/pingcap/tidb/commit/db9882346588ac825c9727fd4529a399b45166f8 |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 99dfe90
|
/run-mysql-test |
1 similar comment
/run-mysql-test |
/hold |
Waiting for #33991. |
/unhold |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 99ab519
|
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-5.2 in PR #34251 |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-5.3 in PR #34252 |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-5.4 in PR #34253 |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-6.0 in PR #34254 |
TiDB MergeCI notify
|
What problem does this PR solve?
Issue Number: close #32459
Problem Summary:
From the panic cases related to
information_schema.columns
we encountered recently, the stack is like:All of these stacks have the common function:
tryFillViewColumnType
andfetchBuildSideRows
.tryFillViewColumnType
is used to extract the field type of a view ininformation_schema.columns
.fetchBuildSideRows
is used by HashJoinExec to get the build side of the result. It is run concurrently withfetchProbeSideChunks
to speed up the query.As explained in #32618, the root cause is: the goroutines created by
HashJoinExec
concurrently accessed a field in the same session.What is changed and how it works?
This PR uses a system session to
tryFillViewColumnType
, preventing the same session is accessed concurrently.Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.