Files
windmill/backend
Ruben Fiszel 425e4ac401 refactor(alerts): read the limiter's gate mark instead of re-deriving it
The alert reconstructed the limiter's admission test in SQL to tell a
gate-parked backlog from worker starvation. That test spans the running
counter, completions inside the time window, per-version setting
fallbacks and three bypass paths, and nothing linked the two copies, so
each divergence surfaced as a fresh false alert or a suppressed one.

Adds v2_job_queue.concurrency_gated, which the limiter sets when it
re-queues a job it could not admit; the alert counts unmarked jobs. The
query drops to a single scan with no joins.

Emitter and limiter changes live in windmill-ee-private (see
ee-repo-ref.txt bump).
2026-07-20 15:17:26 +00:00
..

Windmill Backend

This folder holds all backend components, the src/ folder only contains files used to build the "root" binary.

Components

name description
windmill-api The API server, exposing functionality to other components and the frontend
windmill-audit Contains audit functionality, allowing different components to record important actions
windmill-common Common code shared by all crates
windmill-queue Contains job & flow queuing functionality, commonly written to by the API server and read from by workers
windmill-worker The worker. Used to process and execute flows & jobs.
parsers Contains code to parse signatures in different langauges.

Compile sqlx for offline ci

cargo sqlx prepare --workspace -- --bin windmill --features enterprise