This repository was archived by the owner on Aug 3, 2026. It is now read-only.
feat: harden WorkTable beta and select index backends - #187
Merged
Conversation
added 20 commits
August 3, 2026 07:21
pathscale
marked this pull request as ready for review
August 3, 2026 16:56
This was referenced Aug 3, 2026
This was referenced Aug 3, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary
This is the consolidated correctness and backend-selection PR for WorkTable 1.0.0-beta.1. It keeps WorkTablesIndex as the default while adding statically selected
usingbackends and hardens the concurrent publication paths exercised by the paper benchmark campaign.Index backends
worktables_indexremains the default and supports persistence;indexsetalso supports the existing persistence representation;congeeandarcticrequirepersist: false;Correctness and stabilization
Performance
+0.461%median across six frozen-binary pairs;-1.063%median latency delta;+0.083%median;+0.505%median; andVerification
cargo test --locked --workspace --all-targets --all-features;cargo clippy --locked --workspace --all-targets --all-features -- -D warnings;stable-index-read-retrymode.Dependency order
CI cannot resolve the exact pins until WorkTablesIndex 0.0.4 and then DataBucket 0.5.1 are published. After this PR merges, publish
worktable_codegen1.0.0-beta.1 beforeworktable1.0.0-beta.1. Keep this PR in draft until the dependency releases land; the branch itself is ready for review.The full syntax, persistence contract, backend restrictions, and benchmark plan are in
docs/index-backend-dsl-proposal.md.