Check local write fairness at receiver flush boundaries - #12
Closed
jeregrine wants to merge 1 commit into
Closed
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.
Problem
Observing how much replication backlog remains when a local caller wakes up makes fairness assertions depend on scheduler timing. A local write can also complete eventually while still waiting behind the entire finite backlog, masking a missing fairness turn.
Fix
Generate receiver buffer sizes, incoming batch sizes, backlog lengths, and local register/join operations for both registry and PG receiver lanes.
Suspend one shard, enqueue the receiver backlog, and explicitly wait until the public local request is queued before resuming. Assert that the local event appears at the first receiver flush and before the backlog finishes. Check the remaining remote event order, the exact local event, settled contents, and index consistency.
Supporting information
Stacked on #11 in the follow-up chain rooted at #8. This PR adds only fairness properties and documentation, reusing the existing fixture and history oracle.
The property controls a finite backlog on one shard. It does not claim a deterministic BEAM scheduler or fairness under an infinite stream of control traffic. Production behavior is unchanged.