-
Notifications
You must be signed in to change notification settings - Fork 2
migration: add target readiness guard #1091
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bootjp
merged 34 commits into
design/hotspot-split-m2-promotion-complete
from
design/hotspot-split-m2-target-readiness
Jul 16, 2026
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
2ea0d38
migration: add target readiness guard
bootjp b93f5b9
distribution: add split job management RPCs
bootjp 58c2128
distribution: page split job listing
bootjp 5ba3e82
kv: enforce target readiness guards
bootjp a2ee041
Guard target readiness apply paths
bootjp 6ac85a1
Fix target readiness guard gaps
bootjp ce91b66
Guard manifest scan readiness routes
bootjp f2bcd65
Fix target readiness route proofs
bootjp f727f30
Enable split migration job creation
bootjp 53d38e3
Harden split migration readiness checks
bootjp a624a21
Harden target readiness route proofs
bootjp fa769ac
Harden split migration start guards
bootjp 4447dd3
Reject non-active migration sources
bootjp b5723b5
Fix target readiness staged delete paths
bootjp f22c4ff
Stabilize urgent compactor pagination test
bootjp 119dda2
Guard staged readiness probes
bootjp e6f88bd
Guard target readiness retry paths
bootjp 79b3409
Tighten target readiness proof
bootjp ce0c2e1
Wire split migration capability gate
bootjp f884ed2
Replicate target readiness guards
bootjp 49adab3
Gate split migration on peer capability
bootjp c64ff5f
migration: harden split capability gate
bootjp a775fda
Trim Lua negative cache bound test
bootjp c298060
Enable split migration capability gate
bootjp 70fb630
Keep split migration capability fail closed
bootjp aff2a9f
migration: enable split migration job creation (#1093)
bootjp 9f80fa9
migration: tighten readiness guard publication
bootjp 14aa9e9
migration: guard read-only shard validation
bootjp dddda07
migration: validate staged readiness conflicts
bootjp 8e74d6e
Merge promotion completion into target readiness
bootjp 2d57ae9
Fail closed read-only shard readiness checks
bootjp 9994ec7
Merge remote-tracking branch 'origin/design/hotspot-split-m2-target-r…
bootjp a850ee1
distribution: add split job management RPCs (#1092)
bootjp bbc1876
migration: harden target readiness guards
bootjp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This RPC proposes the new
raftEncodeTargetReadinessentry immediately, unlikePromoteStagedVersionsabove which first checksverifyMigrationPromoteEnabledso operators only emit the new opcode after every voter understands it. In a mixed-version target Raft group, an upgraded leader can accept this call while older followers still do not handle opcode0x0c, so the guard entry can fail or be skipped during apply; add the same kind of feature gate before proposing the command.Useful? React with 👍 / 👎.