mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 08:02:26 +00:00
daab7e4e05
The default debounce key baked all non-accumulated arg values into a colon-joined suffix, so any varying non-accumulated field (e.g. a timestamp, a kafka offset, or a msg id present in a preprocessor's output) silently broke debouncing — every call got a unique key and no jobs ever collapsed into a single debounced run. The default key is now just the runnable's fully-qualified path. The surviving job keeps its own (latest) non-accumulated args, and debounce_args_to_accumulate is still merged across the batch at pull time. Users who want per-arg debouncing can still set a custom debounce_key template (e.g. "pp_$args[region]"). Drops the now-unused args_to_ignore_if_default parameter from resolve_debounce_key. Companion: windmill-labs/windmill-ee-private#<pending> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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