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
|[CPU time](#cpu-time)| 10 ms |50 ms HTTP request <br/> 50 ms [Cron Trigger](/workers/configuration/cron-triggers/)|30 s HTTP request <br/> 15 min [Cron Trigger](/workers/configuration/cron-triggers/)|
64
-
|[Duration](#duration)|None | none | 15 min [Cron Trigger](/workers/configuration/cron-triggers/) <br/> 15 min [Durable Object Alarm](/durable-objects/api/alarms/)<br/> 15 min [Queue Consumer](/queues/configuration/javascript-apis/#consumer)|
|[CPU time](#cpu-time)| 10 ms | 30 s HTTP request <br/> 15 min [Cron Trigger](/workers/configuration/cron-triggers/)|
64
+
|[Duration](#duration)|No limit| No limit for Workers. <br/>15 min duration limit for [Cron Triggers](/workers/configuration/cron-triggers/), [Durable Object Alarms](/durable-objects/api/alarms/)and [Queue Consumers](/queues/configuration/javascript-apis/#consumer)|
65
65
66
66
### Duration
67
67
@@ -91,12 +91,12 @@ Scheduled Workers ([Cron Triggers](/workers/configuration/cron-triggers/)) have
91
91
92
92
## Cache API limits
93
93
94
-
| Feature | Workers Free |[Bundled](/workers/platform/pricing/#example-pricing-bundled-usage-model)|[Unbound](/workers/platform/pricing/#example-pricing-unbound-usage-model) and [Standard](/workers/platform/pricing/#example-pricing-standard-usage-model)|
- 50 total `put()`, `match()`, or `delete()`calls per-request, using the same quota as `fetch()`.
99
+
Calls/request means the number of calls to `put()`, `match()`, or `delete()`Cache API method per-request, using the same quota as subrequests (`fetch()`).
100
100
101
101
:::note
102
102
@@ -176,7 +176,7 @@ If you make a subrequest from your Worker to a target Worker that runs on a [Cus
176
176
177
177
### How many subrequests can I make?
178
178
179
-
The limit for subrequests a Worker can make is 50 per request on the Bundled usage model or 1,000 per request on the Unbound usage model. Each subrequest in a redirect chain counts against this limit. This means that the number of subrequests a Worker makes could be greater than the number of `fetch(request)` calls in the Worker.
179
+
You can make 50 subrequests per request on Workers Free, and 1,000 subrequests per request on Workers Paid. Each subrequest in a redirect chain counts against this limit. This means that the number of subrequests a Worker makes could be greater than the number of `fetch(request)` calls in the Worker.
180
180
181
181
For subrequests to internal services like Workers KV and Durable Objects, the subrequest limit is 1,000 per request, regardless of the [usage model](/workers/platform/pricing/#workers) configured for the Worker.
182
182
@@ -304,6 +304,24 @@ You can emit a maximum of 128 KB of data (across `console.log()` statements, exc
304
304
305
305
Refer to the [Workers Trace Event Logpush documentation](/workers/observability/logs/logpush/#limits) for information on the maximum size of fields sent to logpush destinations.
306
306
307
+
---
308
+
309
+
## Unbound and Bundled plan limits
310
+
311
+
:::note
312
+
Unbound and Bundled plans have been deprecated and are no longer available for new accounts.
313
+
:::
314
+
315
+
If your Worker is on an Unbound plan, your limits are exactly the same as the Workers Paid plan.
316
+
317
+
If your Worker is on a Bundled plan, your limits are the same as the Workers Paid plan except for the following differences:
318
+
* Your limit for [subrequests](/workers/platform/limits/#subrequests) is 50/request
319
+
* Your limit for [CPU time](/workers/platform/limits/#cpu-time) is 50ms for HTTP requests and 50ms for [Cron Triggers](/workers/configuration/cron-triggers/)
320
+
* You have no [Duration](/workers/platform/limits/#duration) limits for [Cron Triggers](/workers/configuration/cron-triggers/), [Durable Object alarms](/durable-objects/api/alarms/), or [Queue consumers](/queues/configuration/javascript-apis/#consumer)
0 commit comments