Skip to content

Commit c1cdce4

Browse files
Oxyjunthomasgauvin
authored andcommitted
[Workflows] Renaming the folder to Platform, adding subrequest limit (#24149)
* Renaming the folder to Platform, adding subrequest limit * Updating internal links * Reverting folder rename
1 parent 4230ec3 commit c1cdce4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/content/docs/workflows/build/workers-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Ensure you have a compatibility date `2024-10-22` or later installed when bindin
224224

225225
The `Workflow` type provides methods that allow you to create, inspect the status, and manage running Workflow instances from within a Worker script.
226226
It is part of the generated types produced by [`wrangler types`](/workers/wrangler/commands/#types).
227-
227+
228228
```ts title="./worker-configuration.d.ts"
229229
interface Env {
230230
// The 'MY_WORKFLOW' variable should match the "binding" value set in the Wrangler config file

src/content/docs/workflows/reference/limits.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ Many limits are inherited from those applied to Workers scripts and as documente
2929
| Maximum number of [queued instances](/workflows/observability/metrics-analytics/#event-types) | 10,000 | 100,000 |
3030
| Retention limit for completed Workflow state | 3 days | 30 days [^2] |
3131
| Maximum length of a Workflow ID [^4] | 64 characters | 64 characters |
32+
| Maximum number of subrequests per Workflow instance | 50/request | 1000/request |
3233

3334
[^2]: Workflow state and logs will be retained for 3 days on the Workers Free plan and for 7 days on the Workers Paid plan.
3435

35-
[^3]: A Workflow instance can run forever, as long as each step does not take more than the CPU time limit and the maximum number of steps per Workflow is not reached.
36+
[^3]: A Workflow instance can run forever, as long as each step does not take more than the CPU time limit and the maximum number of steps per Workflow is not reached.
3637

3738
[^4]: Match pattern: _```^[a-zA-Z0-9_][a-zA-Z0-9-_]*$```_
3839

0 commit comments

Comments
 (0)