Getting Started
Cloudflare Pipelines allows you to ingest and load high volumes of real time streaming data into R2 Object Storage, without managing any infrastructure.
By following this guide, you will:
- Setup an R2 bucket
- Create a pipeline, with HTTP as a source, and an R2 bucket as a sink
- Send data to your pipeline's HTTP ingestion endpoint
- Verify the output delivered to R2
To use Pipelines, you will need:
- Sign up for a Cloudflare account ↗.
- Install
Node.js
↗.
Node.js version manager
Use a Node version manager like Volta ↗ or nvm ↗ to avoid permission issues and change Node.js versions. Wrangler, discussed later in this guide, requires a Node version of 16.17.0
or later.
Create a bucket by following the get started guide for R2, or by running the command below:
npx wrangler r2 bucket create clickstream-bucket
Save the bucket name for the next step.
To create a pipeline using Wrangler, run the following command in a terminal, and specify:
- The name of your pipeline
- The name of the R2 bucket you created in step 1
npx wrangler pipelines create clickstream-pipeline --r2-bucket clickstream-bucket --batch-max-seconds 5 --compression none
After running this command, you'll be prompted to authorize Cloudflare Workers Pipelines to create an R2 API token on your behalf. These tokens used by your pipeline when loading data into your bucket. You can approve the request through the browser link which will open automatically.
If you prefer not to authenticate this way, you may pass your R2 API Token to Wrangler:
npx wrangler pipelines create clickstream-pipeline --r2-bucket clickstream-bucket --r2-access-key-id [ACCESS-KEY-ID] --r2-secret-access-key [SECRET-ACCESS-KEY] --batch-max-seconds 5 --compression none
When choosing a name for your pipeline:
- Ensure it is descriptive and relevant to the type of events you intend to ingest. You cannot change the name of the pipeline after creating it.
- Pipeline names must be between 1 and 63 characters long.
- The name cannot contain special characters outside dashes (
-
). - The name must start and end with a letter or a number.
You'll notice that we have set two optional flags while creating the pipeline: --batch-max-seconds
and --compression
. We've added these flags to make it faster for you to see the output of your first pipeline. For production use cases, we recommend keeping the default settings.
Once you create your pipeline, you will receive a HTTP endpoint which you can post data to. You should see output as shown below:
🌀 Authorizing R2 bucket "clickstream-bucket"🌀 Creating pipeline named "clickstream-pipeline"✅ Successfully created pipeline clickstream-pipeline with ID 91f312b8ca484e5db404bd3e3ef256fn
You can now send data to your pipeline with:curl "https://91f312b8ca484e5db404bd3e3ef256fn.pipelines.cloudflare.com/" -d '[{ "foo":"bar }]'
Use a curl command in your terminal to post an array of JSON objects to the endpoint you received in step 1.
curl -H "Content-Type:application/json" \ -d '[{"event":"viewedCart", "timestamp": "2025-04-03T15:42:30Z"},{"event":"cartAbandoned", "timestamp": "2025-04-03T15:42:37Z"}]' \ <HTTP-endpoint>
Once the pipeline successfully accepts the data, you will receive a success message.
Pipelines handle batching the data, so you can continue posting data to the Pipeline. Once a batch is filled up, the data will be partitioned by date, and written to your R2 bucket.
Open the R2 dashboard ↗, and navigate to the R2 bucket you created in step 1. You will see a directory, labeled with today's date (such as event_date=2025-03-05
). Click on the directory, and you'll see a sub-directory with the current hour (such as hr=04
). You should see a JSON file, containing the data you posted in step 3. Download the file, and open it in a text editor of your choice, to verify that the data posted in step 2 is present.
- Learn about how to setup authentication, or CORS settings, on your HTTP endpoint
- Send data to your Pipeline from a Cloudflare Worker, using our Workers API documentation
If you have any feature requests or notice any bugs, share your feedback directly with the Cloudflare team by joining the Cloudflare Developers community on Discord ↗.