feat: Add At-Least-Once Fan-Out With Redelivery On Nack - #6
Merged
Conversation
Each subscriber gets a private inbox. ack settles that copy. nack redelivers it to the same subscriber only. Bounded by maxDeliveryCount. Restore DeadLetterQueue exports dropped from the package index.
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.
Topic fan-out was still fire-and-forget. If a handler failed, that subscriber never saw the message again. The work queue already retries a single competing consumer. This adds the same guarantee to pub/sub.
ReliableBroker gives each subscriber a private inbox. Publish still copies to everyone, but ack and nack are per copy. A nack (or a thrown handler) comes back to the same subscriber with deliveryCount bumped and redelivered set. Peers who already acked are left alone. Retries stop at maxDeliveryCount so a poison payload cannot spin inside publish. Optional prefetch isolates a slow consumer without stalling the others.
Also puts the DeadLetterQueue exports back on the package index. The work-queue merge had dropped them and the existing DLQ tests could not typecheck.
Closes #5.