Try specific read

This commit is contained in:
Dominik Werder
2022-03-09 20:34:24 +01:00
parent e9b87bf9fa
commit 04def20be3
6 changed files with 483 additions and 123 deletions

View File

@@ -188,10 +188,7 @@ impl Stream for EventChunkerMultifile {
let mut chunkers = vec![];
for of in ofs.files {
if let Some(file) = of.file {
let inp = Box::pin(crate::file_content_stream_2(
file,
self.disk_io_tune.clone(),
));
let inp = crate::file_content_stream(file, self.disk_io_tune.clone());
let chunker = EventChunker::from_event_boundary(
inp,
self.channel_config.clone(),