Skip to content

Commit

Permalink
doc(stream): update streaming_use_arrangement_backfill session vari…
Browse files Browse the repository at this point in the history
…able docs (#16944)
  • Loading branch information
kwannoel authored May 27, 2024
1 parent cdc9aef commit ae7489c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/common/src/session_config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down

0 comments on commit ae7489c

Please sign in to comment.