-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Fix vttablet
not being marked as not serving due when MySQL stalls
#17883
Open
arthurschreiber
wants to merge
1
commit into
vitessio:main
Choose a base branch
from
github:arthur/fix-heartbeat-hang
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+10
−0
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
976f228
to
d8c887a
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #17883 +/- ##
==========================================
- Coverage 67.52% 67.50% -0.03%
==========================================
Files 1594 1595 +1
Lines 259564 259653 +89
==========================================
+ Hits 175266 175271 +5
- Misses 84298 84382 +84 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Arthur Schreiber <[email protected]>
d8c887a
to
00d227b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Backport to: release-19.0
Needs to be back ported to release-19.0
Backport to: release-20.0
Needs to be backport to release-20.0
Backport to: release-21.0
Needs to be backport to release-21.0
Component: VTTablet
Type: Bug
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The heartbeat reader uses an interval to check the timestamp of the last received heartbeat write on replica tablets.
See:
https://github.com/github/vitess-gh/blob/976f228e12c07d78091678b428038175bc46a60c/go/vt/vttablet/tabletserver/repltracker/reader.go#L80-L81
https://github.com/github/vitess-gh/blob/976f228e12c07d78091678b428038175bc46a60c/go/vt/vttablet/tabletserver/repltracker/reader.go#L107-L108
The
*heartbeatReader.readHeartbeat
func then stores the result of the last heartbeat read in two fields ofheartbeatReader
, namelylastKnownLag
andlastKnownError
.Unfortunately, there's a problem with context /timeout handling in the implementation, which can cause
readHeartbeat
to stall if MySQL is stalling too. This can be reproduced by sendingSIGSTOP
to the MySQL process, and then observing that thevttablet
process will actually keep reporting MySQL as healthy.There's a
Context
with a timeout passed down to the*heartbeatReader.fetchMostRecentHeartbeat
func, but I think the timeout handling inside of*Conn.Exec
is badly implemented. I wasn't able to trace down exactly where the problem is, butdbc.env.CheckMySQL
might be a culprit, because it tries to query MySQL without any context handling.The workaround I'm proposing is to change
*heartbeatReader.Status
func to just disregard any previously read heartbeat data if the last time the heartbeat was successfully read is older than two times the configured interval. It feels a bit hacky, but works reliably in identifying that MySQL is unhealthy and very quickly signals tovtgate
that the tablet is unhealthy.Related Issue(s)
Fixes #11884
Checklist
Deployment Notes