Expand description
Thread pool management for ReifyDB.
Provides named, isolated thread pools for different workload classes:
- System pool: lightweight system actors (flow, CDC, watermark, metrics)
- Query pool: heavy query execution actors (WS, gRPC, HTTP)
§Platform differences
- Native: each pool is a separate
rayon::ThreadPoolwith its own OS threads - DST/WASM:
Poolsis a zero-size marker (no real thread pools)
Structs§
- Pool
Config - Configuration for thread pool sizes.
- Pools
- Handle to the runtime’s thread pools.