-
Notifications
You must be signed in to change notification settings - Fork 263
Recovery liveness, storage fault-injection matrix, and one storage implementation over object_store #203
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
Merged
Recovery liveness, storage fault-injection matrix, and one storage implementation over object_store #203
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
4a551f3
test(engine): pin the long-lived-handle heal contract for sidecar-cov…
ragnorc c0f1617
fix(engine): heal pending recovery sidecars at the staged-write entry…
ragnorc e6a2b85
fix(engine): name the right recovery path in the commit-time drift guard
ragnorc 8c4881f
docs: write-entry in-process sidecar heal — contract and coverage
ragnorc f371cdd
test(engine): pin the entry heal contract for schema apply and branch…
ragnorc ad1e03f
fix(engine): heal pending recovery sidecars at the schema-apply and b…
ragnorc c465300
test(engine): pin Phase A sidecar-write failure semantics
ragnorc ab8dfbc
test(engine): pin Phase D delete, list, and audit-append storage-faul…
ragnorc dd26ff2
test(engine): refuse corrupt recovery sidecars loudly
ragnorc dde29f2
test(engine): run the S3 sidecar-lifecycle coverage in CI + document …
ragnorc 3d26638
test(engine): pin read-visibility of acknowledged local if-absent writes
ragnorc d7a0144
fix(engine): publish local storage writes with atomic visibility
ragnorc 26571a3
refactor(engine): one storage implementation over object_store for ev…
ragnorc 7cb3c94
test(engine): one executable storage contract, run against every backend
ragnorc acb0bc3
refactor(cluster): drop put_json's per-backend atomicity branch
ragnorc aa7d7c4
docs: storage adapter collapse — contract, in-memory backend, local C…
ragnorc 7181eaa
docs: finish renaming the storage adapters in user docs and test comm…
ragnorc f251b16
Merge origin/main: flush fix superseded by the atomic-visibility rede…
ragnorc 69dfb88
test(engine): pin branch-awareness of the drift guard's recovery advice
ragnorc 829334a
fix(engine): branch-aware sidecar matching in the drift guard's advice
ragnorc 0f1dc55
test(engine): pin heal non-interference with a live schema apply
ragnorc 9f99d26
fix(engine): serialize the heal's schema-staging reconcile with live …
ragnorc 8565390
test(engine): pin catalog reload after the heal recovers a schema apply
ragnorc 743fe43
fix(engine): reload the in-memory catalog after the heal recovers a s…
ragnorc 7e4ee0a
test(engine): pin that a deleted-branch sidecar cannot wedge the graph
ragnorc e01fd43
fix(engine): classify deleted-branch sidecars as orphaned instead of …
ragnorc e231168
chore: harden review nits — vacuous CI filter, root-runner skip, live…
ragnorc 8fcf0a7
Merge remote-tracking branch 'origin/main' into ragnorc/correctness-v…
ragnorc 6fadebc
test(engine): pin orphan-discard idempotency across a delete fault
ragnorc 4cb8551
fix(engine): orphan-discard idempotency + heal reports acted-vs-deferred
ragnorc f2e902e
test(engine): pin the orphan-discard audit-append fault leg as docume…
ragnorc 5474a59
test(engine): pin honest drift-guard advice when sidecar listing fails
ragnorc 974a27e
fix(engine): admit ambiguity in the drift guard when sidecar listing …
ragnorc 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
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.
Two portability nits: (1) this fails when the test runner is root (chmod 0o000 doesn't stop root reads — Docker dev containers commonly run as root); a euid guard with a logged skip would degrade gracefully instead of failing. (2)
std::os::unix::fs::PermissionsExtis unix-only — fine today, but a#[cfg(unix)]would keep a hypothetical Windows test build compiling.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.
Both fixed:
#[cfg(unix)]on the test, plus a probe-based skip-with-log when mode 000 is still readable (root runners) — the contract under test needs a genuine permission error, so degrading beats failing.