Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/workers/platform/limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ title: Limits
| [Environment variables](#environment-variables) | 64/Worker | 128/Worker |
| [Environment variable<br/>size](#environment-variables) | 5 KB | 5 KB |
| [Worker size](#worker-size) | 1 MB | 10 MB |
| [Worker startup time](#worker-startup-time) | 200 ms | 200 ms |
| [Worker startup time](#worker-startup-time) | 400 ms | 400 ms |
| [Number of Workers](#number-of-workers) | 100 | 500 |
| [Number of Cron Triggers<br/>per Worker](#number-of-schedules) | 3 | 3 |
| [Number of Cron Triggers<br/>per account](#number-of-schedules-account) | 5 | 250 |
Expand Down Expand Up @@ -253,7 +253,7 @@ A Worker can be up to 10 MB in size after compression, and up to 1 MB for free a

## Worker startup time

A Worker must be able to be parsed and execute its global scope (top-level code outside of any handlers) within 200 ms. Script size can impact startup because there's more code to parse and evaluate. Avoiding expensive code in the global scope can keep startup efficient as well. You can request adjustments to limits that conflict with your project goals by contacting Cloudflare. To request an increase to a limit, complete the [Limit Increase Request Form](https://forms.gle/ukpeZVLWLnKeixDu7) and we will contact you with next steps.
A Worker must be able to be parsed and execute its global scope (top-level code outside of any handlers) within 400 ms. Script size can impact startup because there's more code to parse and evaluate. Avoiding expensive code in the global scope can keep startup efficient as well. You can request adjustments to limits that conflict with your project goals by contacting Cloudflare. To request an increase to a limit, complete the [Limit Increase Request Form](https://forms.gle/ukpeZVLWLnKeixDu7) and we will contact you with next steps.

## Number of Workers

Expand Down