diff --git a/src/content/docs/workflows/get-started/cli-quick-start.mdx b/src/content/docs/workflows/get-started/cli-quick-start.mdx index 2a55f3ec94ef840..7f3b5f7d7b5359c 100644 --- a/src/content/docs/workflows/get-started/cli-quick-start.mdx +++ b/src/content/docs/workflows/get-started/cli-quick-start.mdx @@ -144,6 +144,12 @@ Workflows are deployed via [`wrangler`](/workers/wrangler/install-and-update/), npx wrangler@latest deploy ``` +:::note + +Workflows cannot be deployed to Workers for Platforms namespaces, as Workflows do not support Workers for Platforms. + +::: + ## 3. Run a Workflow You can run a Workflow via the `wrangler` CLI, via a Worker binding, or via the Workflows [REST API](/api/resources/workflows/methods/list/). diff --git a/src/content/docs/workflows/get-started/guide.mdx b/src/content/docs/workflows/get-started/guide.mdx index 90584df68546ce5..0c72b48139939bd 100644 --- a/src/content/docs/workflows/get-started/guide.mdx +++ b/src/content/docs/workflows/get-started/guide.mdx @@ -385,6 +385,12 @@ Showing last 1 workflow: └───────────────────┴───────────────────┴────────────┴─────────────────────────┴─────────────────────────┘ ``` +:::note + +Workflows cannot be deployed to Workers for Platforms namespaces, as Workflows do not support Workers for Platforms. + +::: + ## 6. Run and observe your Workflow With your Workflow deployed, you can now run it. diff --git a/src/content/docs/workflows/reference/limits.mdx b/src/content/docs/workflows/reference/limits.mdx index 02b8ca9531e177a..84c02716d08ca99 100644 --- a/src/content/docs/workflows/reference/limits.mdx +++ b/src/content/docs/workflows/reference/limits.mdx @@ -24,8 +24,8 @@ Many limits are inherited from those applied to Workers scripts and as documente | Maximum `step.sleep` duration | 365 days (1 year) | 365 days (1 year) | | Maximum steps per Workflow [^5] | 1024 | 1024 | | Maximum Workflow executions | 100,000 per day [shared with Workers daily limit](/workers/platform/limits/#worker-limits) | Unlimited | -| Concurrent Workflow instances (executions) per account | 25 | 4500 | -| Maximum Workflow instance creation rate | 100 per 10 seconds [^6] | 100 per 10 seconds [^6] | +| Concurrent Workflow instances (executions) per account | 25 | 10,000 | +| Maximum Workflow instance creation rate | 100 per second [^6] | 100 per second [^6] | | Maximum number of [queued instances](/workflows/observability/metrics-analytics/#event-types) | 10,000 | 100,000 | | Retention limit for completed Workflow state | 3 days | 30 days [^2] | | Maximum length of a Workflow name [^4] | 64 characters | 64 characters |