Perform periodic flush of ManagedCursor mark-delete posistions - #8634
Merged
Conversation
merlimat
requested review from
codelipenghui,
jerrypeng,
rdhabalia and
srkukarni
November 19, 2020 22:49
codelipenghui
approved these changes
Nov 20, 2020
merlimat
added a commit
to merlimat/pulsar
that referenced
this pull request
Dec 19, 2020
addisonj
pushed a commit
to streamnative/pulsar-archived
that referenced
this pull request
Feb 16, 2021
sijie
pushed a commit
that referenced
this pull request
Feb 16, 2021
Member
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.
Motivation
The updates on the managed cursor are (by default) rate limited to avoid generating a lot of write operations when consumers are acknowledging messages.
Due to the nature of the rate limiting, if the traffic on topic suddenly stops, the last updates to the cursor position are kept only in memory and they would be flushed only in 2 conditions, either:
If the topic is not gracefully closed, the cursor will be rolled back to the last persisted position.
That will trigger re-delivery of potentially very old messages. Instead we should have a time-bound period after which we ensure that all cursor updates are flushed on disk.