tx_check: avoid nested read tx when loading freelist during Check#1189
Open
VedantMadane wants to merge 1 commit intoetcd-io:mainfrom
Open
tx_check: avoid nested read tx when loading freelist during Check#1189VedantMadane wants to merge 1 commit intoetcd-io:mainfrom
VedantMadane wants to merge 1 commit intoetcd-io:mainfrom
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: VedantMadane The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Check already runs on a read transaction (often from View on another goroutine). Rebuilding an unsynced freelist called beginTx from freepages, which could block when combined with the outer View transaction. Pass the active Tx into loadFreelist so reconstruction uses freepagesWithTx and skips opening a nested read transaction (fixes etcd-io#877). Signed-off-by: Vedant Madane <6527493+VedantMadane@users.noreply.github.com>
da20b77 to
574b87e
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Rebuilding an unsynced freelist from
Tx.checkusedfreepages(), which opened a nested read-only transaction viabeginTx. That interacted badly with callers such as etcd snapshotStatus, which runstx.Check()insidedb.Viewon one goroutine while the check goroutine tried to start another read transaction (issue #877).Change
freepagesWithTx(*Tx)and use the active check transaction for the scan instead of opening a nested transaction.loadFreelist(sharedReadTx *Tx);Tx.checkpassestx,Openpreload passesnil.Testing
go test ./...in the root module (core packages pass; failpoint package needs gofail build tags in this environment).Fixes #877