Skip to content
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) #53300

Merged

Conversation

ti-chi-bot
Copy link
Member

This is an automated cherry-pick of #53234

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.

[2024/05/13 17:24:32.067 +08:00] [INFO] [syncer.go:352] ["syncer check all versions, someone is not synced"] [category=ddl] [info="instance ip tc-tidb-1.tc-tidb-peer.endless-ha-test-add-index-tps-7576420-1-811.svc, port 4000, id d3ac6d21-0137-4106-b42a-89692b7ba7e1"] ["ddl job id"=791] [ver=1931]

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):

/tidb/ddl/all_schema_by_job_versions/791/5bd21551-75b9-4a47-86d4-9520ce74cfd3
1931
/tidb/ddl/all_schema_by_job_versions/791/d3ac6d21-0137-4106-b42a-89692b7ba7e1
1930
...
/tidb/ddl/fg/owner/66018f542345e63b
d3ac6d21-0137-4106-b42a-89692b7ba7e1

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:

1. tidb-0 gets owner
2. tidb-0 registers mdl info
3. tidb-0 waits schema sync

4. tidb-1 gets owner from tidb-0

5. tidb-1 register mdl info
6. tidb-0 clean mdl info
7. tidb-1 wait schema sync, block...

At step 6, tidb-0 incorrectly clean the mdl info registered by tidb-1. As a result, there is nothing to update in mdlCheckLoop because tidb_mdl_info is empty.

What changed and how does it work?

  • Add owner_id field to tidb_mdl_info to identify which owner is used.
  • Prevent updating unexpected mdl info by specifying owner_id in WHERE clause.

Check List

Tests

Side effects

  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Breaking backward compatibility

Documentation

  • Affects user behaviors
  • Contains syntax changes
  • Contains variable changes
  • Contains experimental features
  • Changes MySQL compatibility

Release note

Please refer to Release Notes Language Style Guide to write a quality release note.

None

Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
Copy link

ti-chi-bot bot commented May 15, 2024

[LGTM Timeline notifier]

Timeline:

  • 2024-05-15 13:24:23.728042787 +0000 UTC m=+1659617.485178358: ☑️ agreed by tangenta.
  • 2024-05-15 13:25:43.695758592 +0000 UTC m=+1659697.452894164: ☑️ agreed by YuJuncen.

Copy link

codecov bot commented May 15, 2024

Codecov Report

Attention: Patch coverage is 75.00000% with 3 lines in your changes are missing coverage. Please review.

❗ No coverage uploaded for pull request base (release-8.1@cefc9ec). Click here to learn what that means.

Additional details and impacted files
@@               Coverage Diff                @@
##             release-8.1     #53300   +/-   ##
================================================
  Coverage               ?   71.1782%           
================================================
  Files                  ?       1465           
  Lines                  ?     421230           
  Branches               ?          0           
================================================
  Hits                   ?     299824           
  Misses                 ?     100940           
  Partials               ?      20466           
Flag Coverage Δ
unit 71.1782% <75.0000%> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
dumpling 53.9957% <0.0000%> (?)
parser ∅ <0.0000%> (?)
br 40.9873% <0.0000%> (?)

@tangenta
Copy link
Contributor

/retest

@easonn7
Copy link

easonn7 commented May 16, 2024

/approve

Copy link

ti-chi-bot bot commented May 16, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: easonn7, tangenta, 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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ti-chi-bot ti-chi-bot bot added the approved label May 16, 2024
@ti-chi-bot ti-chi-bot bot merged commit 1100794 into pingcap:release-8.1 May 16, 2024
26 of 30 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved cherry-pick-approved Cherry pick PR approved by release team. lgtm ok-to-test release-note-none size/M Denotes a PR that changes 30-99 lines, ignoring generated files. type/cherry-pick-for-release-8.1
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants