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

VTOrc: Cleanup node registration and unused code #15617

Merged
merged 3 commits into from
Apr 3, 2024

Conversation

GuptaManan100
Copy link
Member

Description

This PR does more cleanup in VTOrc, removing most of the code around node health and election. This code was useful for orchestrator wherein multiple nodes would use the same MySQL instance.

Other unused code and fields have been removed as well as part of this PR.

Related Issue(s)

Checklist

  • "Backport to:" labels have been added if this change should be back-ported to release branches
  • If this change is to be back-ported to previous releases, a justification is included in the PR description
  • Tests were added or are not required
  • Did the new or modified tests pass consistently locally and on CI?
  • Documentation was added or is not required

Deployment Notes

Copy link
Contributor

vitess-bot bot commented Apr 2, 2024

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 NeedsBackportReason If backport labels have been applied to a PR, a justification is required 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 Apr 2, 2024
@github-actions github-actions bot added this to the v20.0.0 milestone Apr 2, 2024
@GuptaManan100 GuptaManan100 removed NeedsDescriptionUpdate The description is not clear or comprehensive enough, and needs work NeedsWebsiteDocsUpdate What it says NeedsIssue A linked issue is missing for this Pull Request NeedsBackportReason If backport labels have been applied to a PR, a justification is required labels Apr 2, 2024
@@ -21,7 +21,6 @@ import (
)

// CandidatePromotionRule describe the promotion preference/rule for an instance.
// It maps to promotion_rule column in candidate_database_instance
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see we removed that table. Where does this map to now? Is it helpful to document that?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nothing, we don't store promotion rules in the tables anymore. They're gotten from the interface implementation.

@@ -87,9 +85,6 @@ func GetReplicationAnalysis(keyspace string, shard string, hints *ReplicationAna
primary_instance.read_only AS read_only,
MIN(primary_instance.gtid_errant) AS gtid_errant,
MIN(primary_instance.alias) IS NULL AS is_invalid,
MIN(primary_instance.data_center) AS data_center,
Copy link
Member

@deepthi deepthi Apr 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain why we don't need to store this any more? It's hard to see when you are reviewing a diff where we store the cell info which essentially provides the same functionality.

Copy link
Member Author

@GuptaManan100 GuptaManan100 Apr 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We still store it, we just don't need to read it at this point, because it was unused. ERS code will read it anyways when it gets all the tablets from the shard.

Copy link

codecov bot commented Apr 3, 2024

Codecov Report

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

Project coverage is 68.13%. Comparing base (cef95ab) to head (c4cecae).
Report is 5 commits behind head on main.

Files Patch % Lines
go/vt/vtorc/logic/vtorc.go 0.00% 14 Missing ⚠️
go/vt/vtorc/process/health.go 75.00% 4 Missing ⚠️
go/vt/vtorc/server/api.go 0.00% 2 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #15617      +/-   ##
==========================================
+ Coverage   68.06%   68.13%   +0.06%     
==========================================
  Files        1561     1556       -5     
  Lines      195288   194976     -312     
==========================================
- Hits       132927   132845      -82     
+ Misses      62361    62131     -230     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@GuptaManan100 GuptaManan100 merged commit 18d4128 into vitessio:main Apr 3, 2024
108 of 115 checks passed
@GuptaManan100 GuptaManan100 deleted the vtorc-cleanup-2 branch April 3, 2024 14:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Component: VTorc Vitess Orchestrator integration Type: Internal Cleanup
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants