Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions src/content/docs/workers/wrangler/commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2041,17 +2041,19 @@ wrangler pipelines create <name> --r2 <r2-bucket-name> [OPTIONS]
- The maximum duration of a batch before data is written, in seconds. Default 15s. Maximum of 600s.
- `--compression` string optional
- Type of compression to apply to output files. Choices: "none", "gzip", "deflate"
- `--prefix` string optional
- Optional base path to store files in the destination bucket.
- `--filepath` string optional
- The path to store files in the destination bucket. Defaults to `event_date=${date}/hr=${hr}`
- The path to store partitioned files in the destination bucket. Defaults to `event_date=${date}/hr=${hr}`
- `--filename` string optional
- The name of the file in the bucket. Must contain `${slug}`. File extension is optional. Defaults to `${slug}-${hr}.json`
- The name of the file in the bucket. Must contain `${slug}`. File extension is optional. Defaults to `${slug}${extension}`

### `update`

Update an existing pipeline

```txt
wrangler pipelines create <name> [OPTIONS]
wrangler pipelines update <name> [OPTIONS]
```

- `name` string required
Expand All @@ -2066,10 +2068,12 @@ wrangler pipelines create <name> [OPTIONS]
- The maximum duration of a batch before data is written, in seconds. Default 15s. Maximum of 600s.
- `--compression` string optional
- Type of compression to apply to output files. Choices: "none", "gzip", "deflate"
- `--prefix` string optional
- Optional base path to store files in the destination bucket.
- `--filepath` string optional
- The path to store files in the destination bucket. Defaults to `event_date=${date}/hr=${hr}`
- The path to store partitioned files in the destination bucket. Defaults to `event_date=${date}/hr=${hr}`
- `--filename` string optional
- The name of the file in the bucket. Must contain `${slug}`. File extension is optional. Defaults to `${slug}-${hr}.json`
- The name of the file in the bucket. Must contain `${slug}`. File extension is optional. Defaults to `${slug}${extension}`

### `delete`

Expand Down
Loading