Skip to main content

cortex/dispatcher/
mod.rs

1//! A ZMQ-based job dispatcher, interfacing between the task `Backend` and an open set of remote
2//! workers
3
4/// Finalize thread responsible for registering the returned tasks and messages in the database
5pub mod finalize;
6/// Manager orchestrating all dispatcher threads
7pub mod manager;
8/// Input-archive page-cache prefetcher (D-20)
9pub mod prefetch;
10/// Shared server utility functions between all dispatcher components
11pub mod server;
12/// Receiver ZMQ sink component
13pub mod sink;
14/// Emitter ZMQ ventilator component
15pub mod ventilator;