mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-07 02:20:55 -05:00
* refactor: move flush workers into a dedicated file fmt * move optimizer worker into a dedicated file * move update worker into a dedicated file * Update lib/collection/src/update_workers/optimization_worker.rs Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update lib/collection/src/update_workers/optimization_worker.rs Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
25 lines
428 B
Rust
25 lines
428 B
Rust
pub mod collection;
|
|
pub mod collection_manager;
|
|
pub mod collection_state;
|
|
pub mod common;
|
|
pub mod config;
|
|
pub mod discovery;
|
|
pub mod grouping;
|
|
pub mod hash_ring;
|
|
pub mod lookup;
|
|
pub mod operations;
|
|
pub mod optimizers_builder;
|
|
pub mod problems;
|
|
pub mod recommendations;
|
|
pub mod shards;
|
|
pub mod telemetry;
|
|
mod update_handler;
|
|
pub mod wal_delta;
|
|
|
|
pub mod events;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub mod profiling;
|
|
pub mod update_workers;
|