Skip to content

Commit cf3dcc5

Browse files
committed
Updating internal links
1 parent fddc582 commit cf3dcc5

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

src/content/changelog/workflows/2025-02-25-workflows-concurrency-increased.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ import { Render, PackageManagers, TypeScriptExample } from "~/components";
99

1010
[Workflows](/workflows/) now supports up to 4,500 concurrent (running) instances, up from the previous limit of 100. This limit will continue to increase during the Workflows open beta. This increase applies to all users on the Workers Paid plan, and takes effect immediately.
1111

12-
Review the Workflows [limits documentation](/workflows/reference/limits) and/or dive into the [get started guide](/workflows/get-started/guide/) to start building on Workflows.
12+
Review the Workflows [limits documentation](/workflows/platform/limits) and/or dive into the [get started guide](/workflows/get-started/guide/) to start building on Workflows.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Objects that include `Function` or `Symbol` types, and objects with circular ref
103103

104104
`step.sleep` and `step.sleepUntil` methods do not count towards the maximum Workflow steps limit.
105105

106-
More information about the limits imposed on Workflow can be found in the [Workflows limits documentation](/workflows/reference/limits/).
106+
More information about the limits imposed on Workflow can be found in the [Workflows limits documentation](/workflows/platform/limits/).
107107

108108
:::
109109

@@ -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
@@ -298,7 +298,7 @@ export default {
298298

299299
Create (trigger) a batch of new instance of the given Workflow, up to 100 instances at a time.
300300

301-
This is useful when you are scheduling multiple instances at once. A call to `createBatch` is treated the same as a call to `create` (for a single instance) and allows you to work within the [instance creation limit](/workflows/reference/limits/).
301+
This is useful when you are scheduling multiple instances at once. A call to `createBatch` is treated the same as a call to `create` (for a single instance) and allows you to work within the [instance creation limit](/workflows/platform/limits/).
302302

303303
* <code>createBatch(batch: WorkflowInstanceCreateOptions[]): Promise&lt;WorkflowInstance[]&gt;</code>
304304

src/content/docs/workflows/get-started/cli-quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can build Workflows to post-process file uploads to [R2 object storage](/r2/
1717

1818
:::caution
1919

20-
This guide is for users who are already familiar with Cloudflare Workers the [durable execution](/workflows/reference/glossary/) programming model it enables.
20+
This guide is for users who are already familiar with Cloudflare Workers the [durable execution](/workflows/platform/glossary/) programming model it enables.
2121

2222
If you are new to either, we recommend the [introduction to Workflows](/workflows/get-started/guide/) guide, which walks you through how a Workflow is defined, how to persist state, and how to deploy and run your first Workflow.
2323

src/content/docs/workflows/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ Deploy dynamic front-end applications in record time.
7070

7171
<CardGrid>
7272

73-
<LinkTitleCard title="Pricing" href="/workflows/reference/pricing/" icon="seti:shell">
73+
<LinkTitleCard title="Pricing" href="/workflows/platform/pricing/" icon="seti:shell">
7474
Learn more about how Workflows is priced.
7575
</LinkTitleCard>
7676

77-
<LinkTitleCard title="Limits" href="/workflows/reference/limits/" icon="document">
77+
<LinkTitleCard title="Limits" href="/workflows/platform/limits/" icon="document">
7878
Learn more about Workflow limits, and how to work within them.
7979
</LinkTitleCard>
8080

src/content/docs/workflows/observability/metrics-analytics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The possible values for `eventType` are documented below:
4242

4343
#### Workflows-level status labels
4444

45-
- `WORKFLOW_QUEUED` - the Workflow is queued, but not currently running. This can happen when you are at the [concurrency limit](/workflows/reference/limits/) and new instances are waiting for currently running instances to complete.
45+
- `WORKFLOW_QUEUED` - the Workflow is queued, but not currently running. This can happen when you are at the [concurrency limit](/workflows/platform/limits/) and new instances are waiting for currently running instances to complete.
4646
- `WORKFLOW_START` - the Workflow has started and is running.
4747
- `WORKFLOW_SUCCESS` - the Workflow finished without errors.
4848
- `WORKFLOW_FAILURE` - the Workflow failed due to errors (exhausting retries, errors thrown, etc).

src/content/docs/workflows/platform/pricing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Storage billing for Workflows will go live on September 15th, 2025.
4747
Storage is billed using gigabyte-month (GB-month) as the billing metric, identical to [Durable Objects SQL storage](/durable-objects/platform/pricing/#sqlite-storage-backend). A GB-month is calculated by averaging the peak storage per day over a billing period (30 days).
4848

4949
* Storage is calculated across all instances, and includes running, errored, sleeping and completed instances.
50-
* By default, instance state is retained for [3 days on the Free plan](/workflows/reference/limits/) and [7 days on the Paid plan](/workflows/reference/limits/).
50+
* By default, instance state is retained for [3 days on the Free plan](/workflows/platform/limits/) and [7 days on the Paid plan](/workflows/platform/limits/).
5151
* When creating a Workflow instance, you can set a shorter state retention period if you do not need to retain state for errored or completed Workflows.
5252
* Deleting instances via the [Workers API](/workflows/build/workers-api/), [Wrangler CLI](/workers/wrangler/commands/#workflows), REST API, or dashboard will free up storage. Note that it may take a few minutes for storage limits to update.
5353

@@ -75,4 +75,4 @@ Workflows are billed as Workers, and share the same CPU time and request SKUs.
7575

7676
### Are there any limits to Workflows?
7777

78-
Refer to the published [limits](/workflows/reference/limits/) documentation.
78+
Refer to the published [limits](/workflows/platform/limits/) documentation.

src/content/glossary/workflows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ entries:
1111
1212
- term: "step"
1313
general_definition: |-
14-
A step is self-contained, individually retriable component of a Workflow. Steps may emit (optional) state that allows a Workflow to persist and continue from that step, even if a Workflow fails due to a network or infrastructure issue. A Workflow can have one or more steps up to the [step limit](/workflows/reference/limits/).
14+
A step is self-contained, individually retriable component of a Workflow. Steps may emit (optional) state that allows a Workflow to persist and continue from that step, even if a Workflow fails due to a network or infrastructure issue. A Workflow can have one or more steps up to the [step limit](/workflows/platform/limits/).
1515
1616
- term: "Event"
1717
general_definition: |-

src/content/release-notes/workflows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
link: "/workflows/reference/changelog/"
2+
link: "/workflows/platform/changelog/"
33
productName: Workflows
44
productLink: "/workflows/"
55
productArea: Developer platform

0 commit comments

Comments
 (0)