-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix][broker] Move newPosition to nextValidLedger:-1 to avoid cursor position and ledger inconsistency in ManagedCursorImpl #25117
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
Open
oneby-wang
wants to merge
28
commits into
apache:master
Choose a base branch
from
oneby-wang:async_mark_delete_trim_ledger
base: master
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.
Open
+383
−73
Conversation
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
…position and ledger inconsistency in ManagedCursorImpl
…ce condition, add comments
…hTimestampNonRecoverableException() test
…mestampNonRecoverableException test
…TopicUnloading test
…ursorLedgerFailed test
…ursorLedgerFailed test
…TimeQuotaWithEmptyLedger test
…meBasedBacklogQuotaCheckWhenNoBacklog test
2 tasks
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.
Motivation
Since
nextValidLedger:-1is a validmarkDeletePosition, we should movenewPositiontonextValidLedger:-1to avoid cursor position and ledger inconsistency inManagedCursorImplwhenever possible.PR #25087 also made this change.
Modifications
ManagedCursorImpl.asyncMarkDelete()method, movenewPositiontonextValidLedger:-1if we reach the following conditions:a. if
lastConfirmedEntry >= newPosition, and next ledger exists, and current ledger entries are all consumed.b. if
lastConfirmedEntry < newPosition, next ledger exists, andnewPosition == nextValidLedger:-1, and current ledger entries are all consumed.I think the previous code might have a little problem. If
newPosition == nextValidLedger:n, n is an non-negative number, we might set newnewPositiontonextValidLedger:nwhich is greater thanlastConfirmedEntry.pulsar/managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java
Lines 2184 to 2195 in ab65faa
And snapshot positions into a local variable to avoid race condition.
Add
testAsyncMarkDeleteMoveToNextLedgerInNonRolloverScenario,testAsyncMarkDeleteMayMoveToNextLedgerInRolloverScenario,testAsyncMarkDeleteMoveToNextLedgerOneByOne,testAsyncMarkDeleteNextLedgerMinusOneEntryIdPositiontests inManagedCursorImplto verify the code change.Fix tests due to this PR's code change.
Fix some flaky tests introduced by PR [fix][broker] Fix cursor position persistence in ledger trimming #25087.
Verifying this change
Does this pull request potentially affect one of the following parts:
If the box was checked, please highlight the changes
Documentation
docdoc-requireddoc-not-neededdoc-completeMatching PR in forked repository
PR in forked repository: oneby-wang#19