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
11 changes: 9 additions & 2 deletions data_plane/src/query_engines/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,15 @@ pub mod no_data_archive;
pub mod query_result;
pub mod routing;
pub mod thanos_query_engine;
pub mod timeline_dispatch;
pub mod window_merger;

// Post-M2.3 reorg: timeline_dispatch + window_merger are warm-tier driver
// primitives (they reason about reconfigure boundaries that only exist
// inside a SketchStore). They moved into `sketch_db::query`. The
// orchestration layer consumes them through the canonical path; these
// aliases keep legacy `query_engines::timeline_dispatch::*` callers
// compiling.
pub use crate::storage_engines::sketch_db::query::timeline_dispatch;
pub use crate::storage_engines::sketch_db::query::window_merger;

pub use asap_query_engine::ASAPQueryEngine;
pub use no_data_archive::{NoDataArchiveEngine, DATA_SOURCE_ID_NO_DATA_ARCHIVE};
Expand Down
2 changes: 2 additions & 0 deletions data_plane/src/storage_engines/sketch_db/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@
pub mod decoders;
pub mod delta_apply;
pub mod sketch_reducer;
pub mod timeline_dispatch;
pub mod window_merger;

#[cfg(test)]
pub mod tests;
Expand Down