You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Consumer CPU time](/workers/platform/limits/#cpu-time)| 30 seconds (default). [Configurable to 5 minutes](/queues/platform/limits/#increasing-queue-consumer-worker-cpu-limits)|
|`delaySeconds` (when sending or retrying) | 12 hours |
28
+
| Requests to the Queues API (incl. pulls/acks) |[1200 requests / 5 mins](/fundamentals/api/reference/limits/)|
29
29
30
30
31
31
@@ -40,3 +40,24 @@ import { Render } from "~/components"
40
40
<sup>5</sup> Refer to [Workers limits](/workers/platform/limits/#cpu-time).
41
41
42
42
<Renderfile="limits_increase"product="workers" />
43
+
44
+
### Increasing Queue Consumer Worker CPU Limits
45
+
[Queue consumer Workers](/queues/reference/how-queues-works/#consumers) are Worker scripts, and share the same [per invocation CPU limits](/workers/platform/limits/#worker-limits) as any Workers do. Note that CPU time is active processing time: not time spent waiting on network requests, storage calls, or other general I/O.
46
+
47
+
By default, the maximum CPU time per consumer Worker invocation is set to 30 seconds, but can be increased by setting `limits.cpu_ms` in your Wrangler configuration:
0 commit comments