Skip to content

Commit 46d362b

Browse files
committed
clarify wall clock vs cpu time
1 parent 06f2adc commit 46d362b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/changelog/workers/2025-03-25-higher-cpu-limits.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ title: Run Workers for up to 5 minutes of CPU-time
33
description: Workers now support up to 5 minutes of CPU time per request. Allowing more CPU-intensive workloads.
44
products:
55
- workers
6-
date: 2025-03-25T17:00:00Z
6+
date: 2025-03-26T17:00:00Z
77
---
88

99
import { Render, TypeScriptExample, WranglerConfig } from "~/components";
1010

1111
You can now run a Worker for up to 5 minutes of CPU time for each request.
1212

13-
Previously, each Workers request ran for a maximum of 30 seconds of CPU time. This
13+
Previously, each Workers request ran for a maximum of 30 seconds of CPU time — that is the time that a Worker is actually performing a task (we still allowed unlimited wall-clock time, in case you were waiting on slow resources). This
1414
meant that some compute-intensive tasks were impossible to do with a Worker. For instance,
1515
you might want to take the cryptographic hash of a large file from R2. If
1616
this computation ran for over 30 seconds, the Worker request would have timed out.

0 commit comments

Comments
 (0)