[venice] Introduce the Writer operation and clean up the metrics

- introduce a new WriteOp to write directly to Venice
- support AVRO keys for reads and for writes
- remove useless metrics
This commit is contained in:
Enrico Olivelli
2023-05-19 15:07:19 +02:00
parent 45b9a2deb4
commit 88457aa9d9
20 changed files with 371 additions and 30 deletions

View File

@@ -394,6 +394,7 @@ public class NBCLI implements Function<String[], Integer>, NBLabeledElement {
if (null != reportGraphiteTo) reporters.addGraphite(reportGraphiteTo, options.wantsMetricsPrefix());
if (null != options.wantsReportCsvTo())
reporters.addCSVReporter(options.wantsReportCsvTo(), options.wantsMetricsPrefix());
reporters.addLogger();
reporters.start(10, options.getReportInterval());
}