Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data_plane/src/storage_engines/sketch_db/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ pub mod accuracy;
pub mod backfill;
pub mod data;
pub mod metrics;
pub mod persistence;
pub mod schema;
pub mod store;

Expand Down
7 changes: 4 additions & 3 deletions data_plane/src/storage_engines/sketch_db/store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1458,6 +1458,7 @@ mod tests {
// alongside the store that uses it.
pub mod epoch_columnar;

// Persistence layer (manifest + parts + flusher + part cache + recovery).
// Reused by `SketchStore::start_persistence`.
pub mod persistence;
// `persistence` moved up to `sketch_db::persistence`. Re-exported here
// so legacy `crate::storage_engines::sketch_db::store::persistence::*`
// paths continue working without consumer changes.
pub use crate::storage_engines::sketch_db::persistence;