QoS & Throughput Patterns 
These patterns control how fast work executes, protect downstream services from overload, and make sure no single caller or tenant monopolizes Worker capacity at the expense of others.
Patterns in This Section
Choosing a Pattern
A downstream dependency has a fixed rate limit: use Downstream Rate Limiting to cap throughput at the Worker.
Urgent work must not wait behind bulk work: use Priority Task Queues.
Multiple tenants share the same Workers: use Fairness to keep one tenant's burst from starving others.
Related Sections
- Worker Configuration Patterns — the Task Queue and Worker setup these patterns route through
- Batch Processing Patterns — rate-control patterns for large record sets
- Error Handling & Retry Patterns — back off and retry when a rate limit is hit