Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/develop/task-queue-priority-fairness.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,11 @@ haven't dispatched yet.
alt="High-level of how fairness works"
/>

Tasks that do not have a `fairness_key` set are grouped together under an implicit empty-string key.
All unkeyed Tasks share this single default bucket and participate in the same round-robin dispatch alongside named fairness keys, with a default weight of 1.0.
This means Fairness adoption can be incremental: you can assign fairness keys to some tenants but not others.
Unkeyed Tasks do not bypass Fairness; they compete as one group alongside all explicitly keyed Tasks.

### Using Fairness and Priority together

When you use Fairness and Priority together, Priority determines which sub-queue Tasks go into. A single Task Queue with
Expand Down
Loading