Skip to content

Commit c8248a5

Browse files
committed
tweak
1 parent 2036ddc commit c8248a5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/query/storages/fuse/src/operations/read/fuse_source.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ pub fn build_fuse_parquet_source_pipeline(
190190
);
191191
}
192192
pipeline.add_pipe(source_builder.finalize());
193-
pipeline.try_resize(std::cmp::min(max_threads, max_io_requests))?;
193+
// pipeline.try_resize(std::cmp::min(max_threads, max_io_requests))?;
194+
pipeline.try_resize(max_threads)?;
194195

195196
info!(
196197
"read block pipeline resize from:{} to:{}",
@@ -210,7 +211,9 @@ pub fn build_fuse_parquet_source_pipeline(
210211
index_reader.clone(),
211212
virtual_reader.clone(),
212213
)
213-
})
214+
});
215+
216+
pipeline.try_resize(max_threads)
214217
}
215218

216219
pub fn dispatch_partitions(

0 commit comments

Comments
 (0)