From d00181cebda46881594fd8ededb8d03c85a7c676 Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Mon, 23 Jun 2025 17:26:10 -0700 Subject: [PATCH] Add doc on MAX_STREAM_CHUNK_SIZE_BYTES --- docs/docs/cloud/reference/env_var.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/docs/cloud/reference/env_var.md b/docs/docs/cloud/reference/env_var.md index 8a9daaa02..2bdb2a981 100644 --- a/docs/docs/cloud/reference/env_var.md +++ b/docs/docs/cloud/reference/env_var.md @@ -124,6 +124,18 @@ Set `REDIS_CLUSTER` to `True` to enable Redis Cluster mode. When enabled, the sy Defaults to `False`. + +## `MAX_STREAM_CHUNK_SIZE_BYTES` + +!!! info "Available in API Server version 0.2.44+" + This environment variable is supported in API Server version 0.2.44 and above. + +Configure the maximum size of a chunk of data that can be added to Redis for streaming events to the client. This is meant to prevent run failure from data that is above the size supported by your redis instance. Default is 128MB (1024 * 1024 * 128). + +Set `MAX_STREAM_CHUNK_SIZE_BYTES` to specify the maximum size of a chunk of data that can be sent in a stream. This is useful when connecting to a Redis Cluster deployment. + +Defaults to `1024 * 1024`. + ## `MOUNT_PREFIX` !!! info "Only Allowed in Self-Hosted Deployments"