Skip to content

Commit a2cbf13

Browse files
Found an old "Bundled" reference under CPU runtime (#1295)
* Found an old "Bundled" reference under CPU runtime * Update products/workers/src/content/platform/limits.md Co-authored-by: Kate Tungusova <[email protected]>
1 parent 3169d3d commit a2cbf13

File tree

1 file changed

+1
-1
lines changed
  • products/workers/src/content/platform

1 file changed

+1
-1
lines changed

products/workers/src/content/platform/limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Use the [TransformStream API](/runtime-apis/streams/transformstream) to stream r
166166

167167
## CPU runtime
168168

169-
Most Workers requests consume less than a millisecond. It’s rare to find a normally operating Workers script that exceeds the CPU time limit. A Worker may consume up to 10ms on the free plan and 50ms on the Bundled tier. The 10ms allowance on the free plan is enough execution time for most use cases including application hosting.
169+
Most Workers requests consume less than a millisecond. It is rare to find a normally operating Workers script that exceeds the CPU time limit. A Worker may consume up to 10ms on the free plan and up to 50ms for Bundled Workers on the Paid Plan. The Paid Plan also offers up to a 30 second [duration](/platform/limits#duration) for increased compute time. The 10ms allowance on the free plan is enough execution time for most use cases including application hosting.
170170

171171
There is no limit on the real runtime for a Workers script. As long as the client that sent the request remains connected, the Workers script can continue processing, making subrequests, and setting timeouts on behalf of that request. When the client disconnects, all tasks associated with that client request are canceled. You can use [`event.waitUntil()`](/runtime-apis/fetch-event) to delay cancellation for another 30 seconds or until the promise passed to `waitUntil()` completes.
172172

0 commit comments

Comments
 (0)