Require reliable per-backend vote delivery - #80
Draft
remdui wants to merge 58 commits into
Draft
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
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
Makes the persistent per-backend outbox the only ProxyFeatures Votifier transport and pairs with HauntedMC/ServerFeatures#87.
Every configured Velocity backend receives an independent durable Redis stream and local delivery obligation. Offline targets remain queued for up to 24 hours and recover through paced replay, while available targets and new live votes continue independently.
Single supported architecture
redis.delivery.serversis a required non-empty YAML list[A-Za-z0-9_.-]{1,64}redis.channelandredis.delivery.stream_patternReliability guarantees
Configuration
This publishes to
proxy.votifier.vote.survival,proxy.votifier.vote.skyblock, and so on.Paired ServerFeatures configuration
Deploy both PRs together. The configured proxy target and backend
server_namemust be the same Velocity identifier.Validation
Coverage includes queue persistence and corruption handling, offline recovery, refreshed replay timestamps, immutable event identity, persistence failure recovery, expiry, capacity enforcement, target validation, shutdown, and live-vote progress during blocked backlog replay.
The final head must pass lint, Java 25 Maven Verify, unit/integration tests, JaCoCo checks, and bundled Velocity acceptance before merge.
Documentation
Updates the feature guide for the mandatory private-stream architecture, exact backend identifier contract, failure behavior, operations, and deployment.