8000 benchmark branch: unaligned join by kwannoel · Pull Request #22051 · risingwavelabs/risingwave · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

benchmark branch: unaligned join #22051

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/common/src/session_config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,17 +380,17 @@ pub struct SessionConfig {
iceberg_engine_connection: String,

/// Whether the streaming join should be unaligned or not.
#[parameter(default = false)]
#[parameter(default = true)]
streaming_enable_unaligned_join: bool,

/// The timeout for reading from the buffer of the sync log store on barrier.
/// Every epoch we will attempt to read the full buffer of the sync log store.
/// If we hit the timeout, we will stop reading and continue.
#[parameter(default = 64_usize)]
#[parameter(default = 512_usize)]
streaming_sync_log_store_pause_duration_ms: usize,

/// The max buffer size for sync logstore, before we start flushing.
#[parameter(default = 2048_usize)]
#[parameter(default = 32768_usize)]
streaming_sync_log_store_buffer_size: usize,

/// Whether to disable purifying the definition of the table or source upon retrieval.
Expand Down
Loading
0