From c9577420dca35e18fd91db8c1d9a37ff23e413ee Mon Sep 17 00:00:00 2001 From: May Lee Date: Fri, 29 May 2026 16:20:08 -0400 Subject: [PATCH 1/2] [DOCS-14572] Add memory buffer configurability to comparison table --- .../scaling_and_performance/buffering_and_backpressure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md b/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md index 41fafb41c86..3a49f5ce964 100644 --- a/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md +++ b/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md @@ -57,7 +57,7 @@ This table compares the differences between the memory and disk buffer. | Property | Memory Buffer | Disk Buffer | | -------------------------------------------------------- | ------------------------- | ------------------------------------ | -| Default size | 500 events | Configurable
Minimum buffer size: 256 MB
Maximum buffer size: 500 GB | +| Default size | Configurable
Default: 500 events
Minimum buffer size: 1 MB
Maximum buffer size: 128 GB | Configurable
Minimum buffer size: 256 MB
Maximum buffer size: 500 GB | | Performance | Higher | Lower | | Durability through an unexpected Worker restart or crash | None | Events flushed to disk latest every 500 ms | | Data loss due to an unexpected restart or crash | All buffered data is lost | All buffered data is retained | From 69e114bfefc295030c071264a19b75f1c49978ee Mon Sep 17 00:00:00 2001 From: May Lee Date: Fri, 29 May 2026 16:25:21 -0400 Subject: [PATCH 2/2] remove default --- .../scaling_and_performance/buffering_and_backpressure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md b/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md index 3a49f5ce964..d68be8f4058 100644 --- a/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md +++ b/content/en/observability_pipelines/scaling_and_performance/buffering_and_backpressure.md @@ -57,7 +57,7 @@ This table compares the differences between the memory and disk buffer. | Property | Memory Buffer | Disk Buffer | | -------------------------------------------------------- | ------------------------- | ------------------------------------ | -| Default size | Configurable
Default: 500 events
Minimum buffer size: 1 MB
Maximum buffer size: 128 GB | Configurable
Minimum buffer size: 256 MB
Maximum buffer size: 500 GB | +| Default size | Configurable
Minimum buffer size: 1 MB
Maximum buffer size: 128 GB | Configurable
Minimum buffer size: 256 MB
Maximum buffer size: 500 GB | | Performance | Higher | Lower | | Durability through an unexpected Worker restart or crash | None | Events flushed to disk latest every 500 ms | | Data loss due to an unexpected restart or crash | All buffered data is lost | All buffered data is retained |