Skip to content

Commit fe293d6

Browse files
committed
Updated pipelines index page
1 parent 7eaba71 commit fe293d6

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

src/content/docs/pipelines/index.mdx

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,43 @@ head:
1111
content: Pipelines
1212
---
1313

14-
import { Description } from "~/components";
14+
import { CardGrid, Description, Feature, LinkTitleCard, Plan, RelatedProduct } from "~/components";
1515

1616
<Description>
1717

1818
Ingest, transform, and store real time data streams in R2.
1919

20-
</Description>
20+
</Description>
21+
22+
<Plan type="paid" />
23+
24+
***
25+
## Features
26+
27+
<Feature header="HTTP as a source" href="/pipelines/sources/http/">
28+
Pipelines generate an HTTP endpoint, which you can post data to.
29+
</Feature>
30+
31+
<Feature header="R2 as a sink" href="/queues/configuration/dead-letter-queues/">
32+
Convert incoming records into compressed JSON files, and write to R2.
33+
</Feature>
34+
35+
***
36+
37+
## More resources
38+
39+
<CardGrid>
40+
41+
<LinkTitleCard title="Limits" href="/pipelines/reference/limits/" icon="document">
42+
Learn about Pipelines limits.
43+
</LinkTitleCard>
44+
45+
<LinkTitleCard title="@CloudflareDev" href="https://x.com/cloudflaredev" icon="x.com">
46+
Follow @CloudflareDev on Twitter to learn about product announcements, and what is new in Cloudflare Workers.
47+
</LinkTitleCard>
48+
49+
<LinkTitleCard title="Developer Discord" href="https://discord.cloudflare.com" icon="discord">
50+
Connect with the Workers community on Discord to ask questions, show what you are building, and discuss the platform with other developers.
51+
</LinkTitleCard>
52+
53+
</CardGrid>

src/content/docs/pipelines/sources/worker-bindings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Open your newly generated `wrangler.toml` configuration file and add the followi
5656
```toml
5757
[[pipelines]]
5858
binding = "MY_PIPELINE"
59-
queue = "<MY-PIPELINE-NAME>"
59+
pipeline = "<MY-PIPELINE-NAME>"
6060
```
6161

6262
Replace `<MY-PIPELINE-NAME>` with the name of the Pipeline you created in step 2. Next, replace `MY_PIPELINE` with the name you want for your `binding`. The binding must be a valid JavaScript variable name. This is the variable you will use to reference this queue in your Worker.

0 commit comments

Comments
 (0)