Skip to content

Commit bd9c2dd

Browse files
committed
Updated pipeline name restrictions
1 parent f4b1a20 commit bd9c2dd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/content/docs/pipelines/get-started.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Render, PackageManagers } from "~/components";
1414

1515
Pipelines is in **public beta**, and any developer with a [paid Workers plan](/workers/platform/pricing/#workers) can start using Pipelines immediately.
1616

17-
Pipelines let you ingest real time streaming data, and store it in R2. By following this guide, you'll create your first Pipeline, connect it to your R2 bucket, and post data to it via HTTP.
17+
Pipelines let you ingest real time streaming data, and store it in R2. Pipeline handles batching, partitioning, and optionally compressing your final files By following this guide, you'll create your first Pipeline, connect it to your R2 bucket, and post data to it via HTTP.
1818

1919
:::
2020

@@ -32,7 +32,7 @@ TODO
3232
TODO
3333

3434
## 1. Setup an R2 bucket to use as a destination
35-
Pipelines is built to ingest data, and store it in an R2 bucket. Create a bucket, following our [Get Started Guide for R2](https://developers.cloudflare.com/r2/get-started/) if you need to. Save the bucket name; you'll need it for the next sep.
35+
Pipelines is built to ingest data, and store it in an R2 bucket. Create a bucket, following our [Get Started Guide for R2](r2/get-started/) if you need to. Save the bucket name; you'll need it for the next sep.
3636

3737
## 2. Create a Pipeline
3838
To create a pipeline using Wrangler, run this command in a shell. Specify the name of your pipeline, as well as the name of the R2 bucket you created in Step 1.
@@ -43,6 +43,8 @@ npx wrangler pipelines create <PIPELINE-NAME> --r2 <R2-BUCKET-NAME>
4343

4444
Choose a descrpitive name for your Pipeline, related to the type of events you intend to ingest. You cannot change the Pipeline name after you have set it.
4545

46+
Pipeline names must be 1 to 63 characters long. Queue names cannot contain special characters outside dashes (`-`), and must start and end with a letter or number.
47+
4648
TODO: Pipeline name limitations
4749

4850
Once your pipeline is created, you'll receive an HTTP endpoint which you can post data to. You should see output which resembles the below:

0 commit comments

Comments
 (0)