Fix quorum queue drop-head dead letter order (backport #14926)#14938
Merged
michaelklishin merged 5 commits intov4.2.xfrom Nov 11, 2025
Merged
Fix quorum queue drop-head dead letter order (backport #14926)#14938michaelklishin merged 5 commits intov4.2.xfrom
drop-head dead letter order (backport #14926)#14938michaelklishin merged 5 commits intov4.2.xfrom
Conversation
Prior to this commit, quorum queue at-most-once dead lettering for the overflow behaviour `drop-head` was dead lettering in the wrong order. (cherry picked from commit 960918e)
This commit at-most-once dead letters a huge number of quorum queue messages due to overflow behaviour `drop-head` more efficiently by avoiding repeatedly creating huge lists. A huge number of messages gets dropped if for example: * when the `max-length(-bytes)' is changed via a policy update, or * a very large message was just enqueued causing many small messages being dead lettered due to `max-length-bytes` being exceeded. (cherry picked from commit 422cc2e)
(cherry picked from commit 59fdd73) # Conflicts: # release-notes/4.3.0.md
Author
|
Cherry-pick of 59fdd73 has failed: To fix up this pull request, you can check it out locally. See documentation: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally |
4.3.0 release notes should not be on the v4.2.x branch (but 4.2.x release notes are/will be in main/v4.3.x).
mergify bot
pushed a commit
that referenced
this pull request
Nov 11, 2025
4.3.0 release notes should not be on the v4.2.x branch (but 4.2.x release notes are/will be in main/v4.3.x). (cherry picked from commit ee10f11)
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.
Prior to this PR, quorum queue at-most-once dead lettering for the overflow behaviour
drop-headwas dead lettering in the wrong order.This is an automatic backport of pull request #14926 done by Mergify.