Skip to content

Commit 1f0a639

Browse files
committed
chore(cubestore): Set batch size to 1024
1 parent c79d28c commit 1f0a639

File tree

1 file changed

+1
-1
lines changed
  • rust/cubestore/cubestore/src/queryplanner

1 file changed

+1
-1
lines changed

rust/cubestore/cubestore/src/queryplanner/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ impl QueryPlannerImpl {
300300
state_builder
301301
}
302302

303-
const EXECUTION_BATCH_SIZE: usize = 4096;
303+
const EXECUTION_BATCH_SIZE: usize = 1024;
304304

305305
pub fn make_execution_context(mut config: SessionConfig) -> SessionContext {
306306
// The config parameter is from metadata_cache_factory (which we need to rename) but doesn't

0 commit comments

Comments
 (0)