Files
qdrant/lib/collection/src/lib.rs
Andrey Vasnetsov 6fe46d0d60 refactor update workers (#7642)
* 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>
2025-12-08 11:51:02 +01:00

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;