alamb commented on code in PR #124:
URL: https://github.com/apache/arrow-ballista/pull/124#discussion_r945939365


##########
ballista/rust/core/proto/ballista.proto:
##########
@@ -503,6 +504,41 @@ message ColumnStats {
   uint32 distinct_count = 4;
 }
 
+message OperatorMetricsSet {
+  repeated OperatorMetric metrics = 1;
+}
+
+
+message NamedCount {
+  string name = 1;
+  uint64 value = 2;
+}
+
+message NamedGauge {
+  string name = 1;
+  uint64 value = 2;

Review Comment:
   I think changing `Gauge` in datafusion to use `AtomicI64` rather than 
`AtomicUsize` would make sense to me 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to