Skip to content

Commit

Permalink
slightly higher magic number
Browse files Browse the repository at this point in the history
  • Loading branch information
wjones127 committed Aug 29, 2024
1 parent e5f32f5 commit 1e293d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance/src/io/exec/scalar_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ impl ExecutionPlan for MaterializeIndexExec {
MATERIALIZE_INDEX_SCHEMA.clone(),
stream,
));
let stream = break_stream(stream, 50 * 1024);
let stream = break_stream(stream, 64 * 1024);
Ok(Box::pin(RecordBatchStreamAdapter::new(
MATERIALIZE_INDEX_SCHEMA.clone(),
stream.map_err(|err| err.into()),
Expand Down

0 comments on commit 1e293d5

Please sign in to comment.