WIP query options

This commit is contained in:
Dominik Werder
2023-02-08 16:53:18 +01:00
parent b93bb9b467
commit 4694f98758
22 changed files with 664 additions and 272 deletions
+10 -2
View File
@@ -101,8 +101,16 @@ pub fn main() -> Result<(), Error> {
let stats_conf = EventChunkerConf {
disk_stats_every: ByteSize::mb(2),
};
let _chunks =
EventChunker::from_start(inp, channel_config.clone(), range, stats_conf, path, false, true);
let _chunks = EventChunker::from_start(
inp,
channel_config.clone(),
range,
stats_conf,
path.clone(),
false,
true,
format!("{:?}", path),
);
err::todo();
Ok(())
}