Skip to content

Commit 0ddc0d1

Browse files
committed
Updated typos in limits
1 parent fc151ce commit 0ddc0d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Render, WranglerConfig } from "~/components"
2222
| Per-queue backlog size <sup>4</sup> | 25GB |
2323
| Concurrent consumer invocations | 250 <sup>push-based only</sup> |
2424
| Consumer duration (wall clock time) | 15 minutes <sup>5</sup> |
25-
| [Active Consumer CPU time]((/workers/platform/limits/#cpu-time))| 30 seconds (default). Configurable to 5 minutes of active CPU time |
25+
| [Active Consumer CPU time]((/workers/platform/limits/#cpu-time))| 30 seconds (default). [Configurable to 5 minutes](/queues/platform/limits/#increasing-queue-consumer-worker-cpu-limits) |
2626
| `visibilityTimeout` (pull-based queues) | 12 hours |
2727
| `delaySeconds` (when sending or retrying) | 12 hours |
2828
| Requests to the Queues API (incl. pulls/acks) | [1200 requests / 5 mins](/fundamentals/api/reference/limits/) |
@@ -41,10 +41,10 @@ import { Render, WranglerConfig } from "~/components"
4141

4242
<Render file="limits_increase" product="workers" />
4343

44-
### Increasing Queue Consumer CPU limits
45-
Queue consumers are Worker scripts, and share the same [per invocation CPU limits](/workers/platform/limits/#worker-limits) as any Workers do. Note that CPU time is active processing time: not time spent waiting on network requests, storage calls, or other general I/O, which don't count towards your CPU time or Workflows compute consumption.
44+
### Increasing Queue Consumer Worker CPU Limits
45+
[Queue consumer Workers](/queues/reference/how-queues-works/#consumers) are Worker scripts, and share the same [per invocation CPU limits](/workers/platform/limits/#worker-limits) as any Workers do. Note that CPU time is active processing time: not time spent waiting on network requests, storage calls, or other general I/O.
4646

47-
By default, the maximum CPU time per Workflow invocation is set to 30 seconds, but can be increased for all invocations associated with a Queue consumer by setting `limits.cpu_ms` in your Wrangler configuration:
47+
By default, the maximum CPU time per consumer Worker invocation is set to 30 seconds, but can be increased by setting `limits.cpu_ms` in your Wrangler configuration:
4848

4949
<WranglerConfig>
5050

0 commit comments

Comments
 (0)