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

VReplication: Properly Handle FK Constraints When Deferring Secondary Keys #14543

Merged
merged 3 commits into from
Dec 4, 2023

Conversation

mattlord
Copy link
Contributor

@mattlord mattlord commented Nov 17, 2023

Description

The MoveTables and Reshard commands/workflows support deferring secondary key generation until after the copy phase completes — adding all of them in one shot per table — via the --defer-secondary-keys flag.

In v18 we began adding full support for foreign keys and in the process of doing that work we realized that when deferring secondary keys the workflow would fail with an error that a secondary key could not be dropped because it was needed for a foreign key. For example, the new unit test cases fail this way on main:

❯ go test -timeout 30s -run ^TestDeferSecondaryKeys$ vitess.io/vitess/go/vt/vttablet/tabletmanager/vreplication
--- FAIL: TestDeferSecondaryKeys (0.16s)
    --- FAIL: TestDeferSecondaryKeys/2SK:1FK (0.01s)
        vreplicator_test.go:474:
            	Error Trace:	/Users/matt/git/vitess/go/vt/vttablet/tabletmanager/vreplication/vreplicator_test.go:474
            	Error:      	Received unexpected error:
            	            	Cannot drop index 't2_id': needed in a foreign key constraint (errno 1553) (sqlstate HY000) during query: alter table vrepl.t1 drop key c1, drop key c2, drop key t2_id
            	Test:       	TestDeferSecondaryKeys/2SK:1FK

Even if this did work, we should not remove those keys so that we can utilize the foreign keys as expected during the workflow's copy phase in the future.

In this PR we add a check to see if the secondary key is required for a foreign key constraint and if so we do not temporarily remove it during the copy phase.

Related Issue(s)

Checklist

  • "Backport to:" labels have been added if this change should be back-ported
  • Tests were added or are not required
  • Did the new or modified tests pass consistently locally and on the CI
  • Documentation was added or is not required

Signed-off-by: Matt Lord <[email protected]>
Copy link
Contributor

vitess-bot bot commented Nov 17, 2023

Review Checklist

Hello reviewers! 👋 Please follow this checklist when reviewing this Pull Request.

General

  • Ensure that the Pull Request has a descriptive title.
  • Ensure there is a link to an issue (except for internal cleanup and flaky test fixes), new features should have an RFC that documents use cases and test cases.

Tests

  • Bug fixes should have at least one unit or end-to-end test, enhancement and new features should have a sufficient number of tests.

Documentation

  • Apply the release notes (needs details) label if users need to know about this change.
  • New features should be documented.
  • There should be some code comments as to why things are implemented the way they are.
  • There should be a comment at the top of each new or modified test to explain what the test does.

New flags

  • Is this flag really necessary?
  • Flag names must be clear and intuitive, use dashes (-), and have a clear help text.

If a workflow is added or modified:

  • Each item in Jobs should be named in order to mark it as required.
  • If the workflow needs to be marked as required, the maintainer team must be notified.

Backward compatibility

  • Protobuf changes should be wire-compatible.
  • Changes to _vt tables and RPCs need to be backward compatible.
  • RPC changes should be compatible with vitess-operator
  • If a flag is removed, then it should also be removed from vitess-operator and arewefastyet, if used there.
  • vtctl command output order should be stable and awk-able.

@vitess-bot vitess-bot bot added NeedsDescriptionUpdate The description is not clear or comprehensive enough, and needs work NeedsIssue A linked issue is missing for this Pull Request NeedsWebsiteDocsUpdate What it says labels Nov 17, 2023
@github-actions github-actions bot added this to the v19.0.0 milestone Nov 17, 2023
@mattlord mattlord force-pushed the defer_secondary_keys_fks branch 2 times, most recently from a8d1ec4 to c1c2cf0 Compare November 17, 2023 15:59
@mattlord mattlord force-pushed the defer_secondary_keys_fks branch from c1c2cf0 to 3fcdb55 Compare November 17, 2023 16:05
Signed-off-by: Matt Lord <[email protected]>
@mattlord mattlord added Backport to: release-18.0 and removed NeedsDescriptionUpdate The description is not clear or comprehensive enough, and needs work NeedsIssue A linked issue is missing for this Pull Request labels Nov 19, 2023
@mattlord mattlord marked this pull request as ready for review November 19, 2023 10:48
@mattlord mattlord requested review from deepthi and ajm188 November 19, 2023 10:51
@deepthi
Copy link
Member

deepthi commented Nov 30, 2023

Should this really be back ported to v18? I thought we were not back porting anything FK-related because it is experimental.

@mattlord
Copy link
Contributor Author

mattlord commented Dec 1, 2023

Should this really be back ported to v18? I thought we were not back porting anything FK-related because it is experimental.

I thought it was worth doing, but we don't have to.

@mattlord mattlord merged commit 69e65bd into vitessio:main Dec 4, 2023
116 of 118 checks passed
@mattlord mattlord deleted the defer_secondary_keys_fks branch December 4, 2023 11:56
ejortegau pushed a commit to slackhq/vitess that referenced this pull request Dec 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

Bug Report: Deferring Secondary Keys Does Not Work With Foreign Keys
3 participants