Run first time with scalar, refactor value extraction

This commit is contained in:
Dominik Werder
2021-05-12 17:45:12 +02:00
parent 3df25e7a75
commit 34217967e9
14 changed files with 363 additions and 128 deletions

View File

@@ -173,18 +173,7 @@ async fn raw_conn_handler_inner_try(
event_chunker_conf,
)
.into_dim_1_f32_stream()
.into_binned_x_bins_1()
.map(|k| {
if false {
match &k {
Ok(MinMaxAvgScalarEventBatchStreamItem::EventDataReadStats(stats)) => {
info!("raw::conn ✑ ✑ ✑ ✑ ✑ ✑ seeing stats: {:?}", stats);
}
_ => {}
}
}
k
});
.into_binned_x_bins_1();
let mut e = 0;
while let Some(item) = s1.next().await {
match &item {