[WIP] Refactor Consensus API and KV Interaction - #8190
Draft
Eddy Ashton (eddyashton) wants to merge 4 commits into
Draft
[WIP] Refactor Consensus API and KV Interaction#8190Eddy Ashton (eddyashton) wants to merge 4 commits into
Eddy Ashton (eddyashton) wants to merge 4 commits into
Conversation
Keep existing AFT and KV tests on test-owned convenience helpers while production consumers use coherent consensus details. Require Raft compaction to pass primary state explicitly and derive primary/backup stub behavior from constructor-selected state.\n\nRefs #8184 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Eddy Ashton (eddyashton)
force-pushed
the
agents/issue-8184-implementation
branch
from
August 20, 2026 15:53
669e8b6 to
2f95bdc
Compare
Eddy Ashton (eddyashton)
force-pushed
the
agents/issue-8184-implementation
branch
from
August 20, 2026 15:54
2f95bdc to
de984a8
Compare
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.
This pull request implements the changes required for Issue 8184, focusing on a refactor of the consensus API and its interaction with the KV store. The main objectives were to streamline the API, enhance clarity, and ensure thread safety.
Key Changes
ConsensusDetailssnapshots.compactmethod in the KV store to indicate leadership status, removing the need for back-channel queries to the consensus layer.ConsensusKvQueriesinterface, simplifying the API and reducing unnecessary dependencies.Verification
These changes enhance the clarity and efficiency of the consensus and KV interactions while maintaining the integrity of the system.