Skip to content

Commit 95d3580

Browse files
[Workers] Clarify CPU time limit cutoff for scheduled Workers (#26287)
- Clarify that schedule intervals of exactly one hour get the higher limit
1 parent 193e0c3 commit 95d3580

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/content/docs/workers/platform/limits.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ You can also customize this in the [Workers dashboard](https://dash.cloudflare.c
112112

113113
:::note
114114

115-
Scheduled Workers ([Cron Triggers](/workers/configuration/cron-triggers/)) have different limits on CPU time based on the schedule interval. When the schedule interval is less than 1 hour, a Scheduled Worker may run for up to 30 seconds. When the schedule interval is more than 1 hour, a scheduled Worker may run for up to 15 minutes.
115+
Scheduled Workers ([Cron Triggers](/workers/configuration/cron-triggers/)) have different limits on CPU time based on the schedule interval. When the schedule interval is less than 1 hour, a Scheduled Worker may run for up to 30 seconds. When the schedule interval is 1 hour or more, a scheduled Worker may run for up to 15 minutes.
116116
:::
117117

118118
---
@@ -159,6 +159,7 @@ Each [isolate](/workers/reference/how-workers-works/#isolates) of your Worker's
159159
When an isolate running your Worker exceeds 128 MB of memory, the Workers runtime handles this gracefully instead of failing immediately. It allows in-flight requests to complete while simultaneously creating a new isolate for your Worker for new requests. While this approach typically allows in-flight requests to complete, during periods of extremely high load, some incoming requests may be cancelled to maintain system stability.
160160

161161
To view out-of-memory errors (OOM), as well as CPU limit overages:
162+
162163
1. In the Cloudflare dashboard, go to the **Workers & Pages** page.
163164

164165
<DashButton url="/?to=/:account/workers-and-pages" />

0 commit comments

Comments
 (0)