Skip to content

Commit 6996cb5

Browse files
prevent read-blocking during contiguous fixed journal prune
1 parent f4329d4 commit 6996cb5

6 files changed

Lines changed: 406 additions & 43 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,8 @@ stability_scope!(BETA {
705705
/// Remove a blob from a given partition.
706706
///
707707
/// If no `name` is provided, the entire partition is removed.
708+
/// If a `name` is provided, existing [Blob] handles for that blob must remain readable
709+
/// until they are dropped, but the blob must be removed from future namespace lookups.
708710
///
709711
/// An Ok result indicates the blob is durably removed.
710712
fn remove(

storage/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ commonware-math.workspace = true
3838
commonware-runtime = { workspace = true, features = ["test-utils"] }
3939
commonware-storage = { path = ".", features = ["std"] }
4040
criterion.workspace = true
41+
governor.workspace = true
4142
rand.workspace = true
4243
rstest.workspace = true
4344
tracing-subscriber.workspace = true

0 commit comments

Comments
 (0)