-
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
ddl: add owner_id field to tidb_mdl_info to avoid unexpected writes #53234
Conversation
Hi @tangenta. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #53234 +/- ##
================================================
+ Coverage 72.4796% 75.7191% +3.2395%
================================================
Files 1493 1497 +4
Lines 429362 434379 +5017
================================================
+ Hits 311200 328908 +17708
+ Misses 98931 84952 -13979
- Partials 19231 20519 +1288
Flags with carried forward coverage won't be shown. Click here to find out more.
|
/retest |
@tangenta: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/ok-to-test |
[LGTM Timeline notifier]Timeline:
|
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: easonn7, wjhuang2016, YuJuncen The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
1 similar comment
/retest |
Signed-off-by: ti-chi-bot <[email protected]>
In response to a cherrypick label: new pull request created to branch |
What problem does this PR solve?
Issue Number: close #53073
Problem Summary:
tidb-1 keeps printing "someone is not synced", which means it is blocked at
waitSchemaSynced
.tidb-1 is DDL owner. However, tidb-1's schema version is less than non-owner TiDB (here are the results from
tiup ctl:v8.0.0 etcd --endpoints={pd_addr}:2379 get --prefix /tidb/ddl
):After checking the log, I found that DDL owner is switched from tidb-0 to tidb-1 at this time.
On the other hand,
mysql.tidb_mdl_info
is empty.Above all, the timeline should be:
At step 6, tidb-0 incorrectly clean the mdl info registered by tidb-1. As a result, there is nothing to update in
mdlCheckLoop
becausetidb_mdl_info
is empty.What changed and how does it work?
owner_id
field totidb_mdl_info
to identify which owner is used.owner_id
in WHERE clause.Check List
Tests
With this PR, we can pass the test mentioned in issue add index blocked due to tidb schema version can not sync and caused that other ddl job always queueing after injection pd leader io delay #53073.
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.