-
Notifications
You must be signed in to change notification settings - Fork 4
feat: implement full replication subsystem #54
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
Open
mickvandijke
wants to merge
20
commits into
main
Choose a base branch
from
feat/replication-subsystem
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
20f832d
feat: implement full replication subsystem
mickvandijke bb9ad07
test: add replication e2e tests and wire ReplicationEngine into test …
mickvandijke 04732aa
fix: resolve all clippy warnings with -D warnings on all targets
mickvandijke ea07e03
fix: resolve doc link error and Windows CI test failures
mickvandijke 4b0a271
test: add comprehensive Section 18 test coverage (36 new tests)
mickvandijke 02883f1
test: add final 12 Section 18 scenarios for full test matrix coverage
mickvandijke 796a51f
ci: enable e2e and replication tests in CI workflows
mickvandijke 0521e31
test: add final 9 Section 18 scenarios for complete test matrix coverage
mickvandijke a3c1d71
fix: run e2e tests single-threaded to prevent LMDB TLS exhaustion
mickvandijke cea1966
fix: resolve protocol name validation and request-response handling i…
mickvandijke eec04ce
fix: handle Instant::checked_sub failure on Windows in bootstrap clai…
mickvandijke b4dce78
test: fix 7 weak/mislabeled Section 18 replication scenario tests
mickvandijke 13be5e6
fix: resolve message handler deadlock and bootstrap flag in replicati…
mickvandijke a46b8fe
test: fix 6 missing/mislabeled/weak Section 18 replication scenario t…
mickvandijke 5b2a7bd
fix: resolve clippy doc_markdown and needless_range_loop warnings
mickvandijke 31d9d76
refactor: trigger replication sync on KClosestPeersChanged instead of…
mickvandijke 16d5ba5
fix: gate bootstrap sync on DhtNetworkEvent::BootstrapComplete
mickvandijke 2a69e58
feat: dynamic audit batch sizing based on local store size
mickvandijke 0a3a01f
refactor: use local RT lookups instead of network lookups in audit
mickvandijke 85eb73a
refactor: pick audit peer first, then find their responsible keys
mickvandijke 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
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
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
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.
Changing
CHUNK_PROTOCOL_IDchanges the protocol string used for routing chunk messages. This is a wire-compatibility breaking change for any existing nodes/clients still using the previous ID. Consider calling this out explicitly in the PR description/release notes and/or providing a migration/compatibility strategy (e.g., supporting both IDs for a deprecation window or bumping protocol/versioning accordingly).