feat(consensus): enable independent commit progress across namespaces#2765
Merged
feat(consensus): enable independent commit progress across namespaces#2765
Conversation
7dec4e9 to
8434580
Compare
8434580 to
674e074
Compare
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #2765 +/- ##
============================================
+ Coverage 68.30% 68.64% +0.33%
Complexity 656 656
============================================
Files 741 742 +1
Lines 62210 62688 +478
Branches 58623 59101 +478
============================================
+ Hits 42495 43033 +538
+ Misses 17601 17539 -62
- Partials 2114 2116 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
4cccc3d to
f3d03b1
Compare
…aces LocalPipeline's single VecDeque blocked independent commit progress across namespaces. NamespacedPipeline uses per-namespace VecDeques under one global op sequence and hash chain, so drain_committable_all drains each namespace independently. Additional fixes: wire last_prepare_checksum through Project and on_replicate instead of hardcoded 0; walk consecutive ops in ack_quorum_reached to prevent premature drain; propagate namespace in build_reply_message; enforce namespace registration before push; add namespace field to view change headers; replace magic-number dispatch with Operation enum in simulator.
f3d03b1 to
d275119
Compare
numinnex
approved these changes
Feb 20, 2026
thepatrykk
approved these changes
Feb 20, 2026
kriti-sc
pushed a commit
to kriti-sc/iggy
that referenced
this pull request
Mar 6, 2026
…apache#2765) LocalPipeline's single VecDeque blocked independent commit progress across namespaces. NamespacedPipeline uses per-namespace VecDeques under one global op sequence and hash chain, so drain_committable_all drains each namespace independently. Additional fixes: wire last_prepare_checksum through Project and on_replicate instead of hardcoded 0; walk consecutive ops in ack_quorum_reached to prevent premature drain; propagate namespace in build_reply_message; enforce namespace registration before push; add namespace field to view change headers; replace magic-number dispatch with Operation enum in simulator.
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.
LocalPipeline's single VecDeque blocked independent commit
progress across namespaces. NamespacedPipeline uses per-namespace
VecDeques under one global op sequence and hash chain, so
drain_committable_all drains each namespace independently.
Additional fixes: wire last_prepare_checksum through Project
and on_replicate instead of hardcoded 0; walk consecutive ops
in ack_quorum_reached to prevent premature drain; propagate
namespace in build_reply_message; enforce namespace registration
before push; add namespace field to view change headers; replace
magic-number dispatch with Operation enum in simulator.