pub fn spawn_scanners(
pool: PgPool,
cfg: PostgresScannerConfig,
) -> PostgresScannerHandleExpand description
Spawn all six Postgres reconcilers as long-lived tick loops.
Per-task shape:
- Build a
tokio::time::interval(cfg.<reconciler>_interval). - On each tick (or on shutdown signal), either run the reconciler tick body or exit.
- Log per-tick failures at
warnand continue — matches the Valkey scanner’s “don’t poison the scanner on one bad partition” semantic.