[raft/scd] Derive implicit subscription ID deterministically - #1656
Open
MariemBaccari wants to merge 13 commits into
Open
[raft/scd] Derive implicit subscription ID deterministically#1656MariemBaccari wants to merge 13 commits into
MariemBaccari wants to merge 13 commits into
Conversation
This was referenced Aug 20, 2026
MariemBaccari
force-pushed
the
scd_deterministic_implicit_sub
branch
3 times, most recently
from
August 20, 2026 14:05
4db755d to
5ff0dfc
Compare
MariemBaccari
marked this pull request as ready for review
August 20, 2026 14:15
MariemBaccari
force-pushed
the
scd_deterministic_implicit_sub
branch
from
August 20, 2026 15:07
5ff0dfc to
475f91b
Compare
MariemBaccari
force-pushed
the
scd_deterministic_implicit_sub
branch
from
August 20, 2026 15:30
475f91b to
7b88375
Compare
MariemBaccari
marked this pull request as draft
August 21, 2026 06:31
MariemBaccari
force-pushed
the
scd_deterministic_implicit_sub
branch
from
August 21, 2026 06:34
7b88375 to
1e57680
Compare
MariemBaccari
marked this pull request as ready for review
August 21, 2026 06:42
MariemBaccari
marked this pull request as draft
August 21, 2026 08:14
MariemBaccari
marked this pull request as ready for review
August 21, 2026 08:24
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.
Chained PR: #1627 -> #1642 -> #1643 -> #1644 -> #1645 -> #1646 -> #1649 -> #1650 -> #1651 -> #1653 -> #1654 -> #1656 -> #1657 -> #1655
upsertOperationalIntentReference's transaction creates a new random UUID when an implicit subscription is requested. However, this wouldn't execute deterministically across Raft nodes and entry replays.There are two directions to solve this:
parametersmap field to theProposalstruct where each operation can pass its parameters and then passing the parameters in the context as we do for the timestamp and locality to propagate them to business logic. However, this solution is not very elegant and would actually only be used once by this case.