From ae7489c7cbf02bee6c692f799bd23c9de10fde7b Mon Sep 17 00:00:00 2001 From: Noel Kwan <47273164+kwannoel@users.noreply.github.com> Date: Mon, 27 May 2024 14:40:40 +0800 Subject: [PATCH] doc(stream): update `streaming_use_arrangement_backfill` session variable docs (#16944) --- src/common/src/session_config/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/common/src/session_config/mod.rs b/src/common/src/session_config/mod.rs index 572cecc0299c5..8fbfd2cd6e969 100644 --- a/src/common/src/session_config/mod.rs +++ b/src/common/src/session_config/mod.rs @@ -152,7 +152,11 @@ pub struct SessionConfig { #[parameter(default = true, rename = "rw_streaming_enable_bushy_join")] streaming_enable_bushy_join: bool, - /// Enable arrangement backfill for streaming queries. Defaults to false. + /// Enable arrangement backfill for streaming queries. Defaults to true. + /// When set to true, the parallelism of the upstream fragment will be + /// decoupled from the parallelism of the downstream scan fragment. + /// Or more generally, the parallelism of the upstream table / index / mv + /// will be decoupled from the parallelism of the downstream table / index / mv / sink. #[parameter(default = true)] streaming_use_arrangement_backfill: bool,