@@ -45,9 +45,9 @@ Batching can:
4545
4646There are three ways to define how ingested data is batched:
4747
48- 1 . ` batch-max-mb ` : The maximum amount of data that will be batched in megabytes. Default is ` 10 MB ` , maximum is ` 100 MB ` .
48+ 1 . ` batch-max-mb ` : The maximum amount of data that will be batched in megabytes. Default, and maximum, is ` 100 MB ` .
49492 . ` batch-max-rows ` : The maximum number of rows or events in a batch before data is written. Default, and maximum, is ` 10,000 ` rows.
50- 3 . ` batch-max-seconds ` : The maximum duration of a batch before data is written in seconds. Default is ` 15 seconds ` , maximum is ` 300 seconds ` .
50+ 3 . ` batch-max-seconds ` : The maximum duration of a batch before data is written in seconds. Default, and maximum, is ` 300 seconds ` .
5151
5252Batch definitions are hints. A pipeline will follow these hints closely, but batches might not be exact.
5353
@@ -68,11 +68,11 @@ npx wrangler pipelines update [PIPELINE-NAME] --batch-max-mb 100 --batch-max-row
6868
6969### Batch size limits
7070
71- | Setting | Default | Minimum | Maximum |
72- | ----------------------------------------- | ----------- | --------- | ----------- |
73- | Maximum Batch Size ` batch-max-mb ` | 10 MB | 1 MB | 100 MB |
74- | Maximum Batch Timeout ` batch-max-seconds ` | 15 seconds | 1 second | 300 seconds |
75- | Maximum Batch Rows ` batch-max-rows ` | 10,000 rows | 1 row | 10,000,000 rows |
71+ | Setting | Default | Minimum | Maximum |
72+ | ----------------------------------------- | ---------------- | --------- | ----------- |
73+ | Maximum Batch Size ` batch-max-mb ` | 100 MB | 1 MB | 100 MB |
74+ | Maximum Batch Timeout ` batch-max-seconds ` | 300 seconds | 1 second | 300 seconds |
75+ | Maximum Batch Rows ` batch-max-rows ` | 10,000,000 rows | 1 row | 10,000,000 rows |
7676
7777
7878## Deliver partitioned data
0 commit comments