Jackie-Jiang commented on a change in pull request #3979: Track "freshness" 
timestamp across consuming segments
URL: https://github.com/apache/incubator-pinot/pull/3979#discussion_r282192053
 
 

 ##########
 File path: 
pinot-common/src/main/java/org/apache/pinot/common/response/broker/BrokerResponseNative.java
 ##########
 @@ -203,6 +207,27 @@ public void setNumSegmentsMatched(long 
numSegmentsMatched) {
     _numSegmentsMatched = numSegmentsMatched;
   }
 
+  @JsonProperty("numConsumingSegmentsQueried")
+  public long getNumConsumingSegmentsQueried() {
+    return _numConsumingSegmentsQueried;
+  }
+
+  @JsonProperty("numConsumingSegmentsQueried")
+  public void setNumConsumingSegmentsQueried(long queried) {
+    _numConsumingSegmentsQueried = queried;
+  }
+
+  @JsonProperty("minConsumingFreshnessTimeMs")
+  public long getMinConsumingFreshnessTimeMs() {
+    return _minConsumingFreshnessTimeMs;
+  }
+
+  @JsonProperty("minConsumingFreshnessTimeMs")
+  public void setMinConsumingFreshnessTimeMs(long ts) {
 
 Review comment:
   (Optional) change the parameter to be **minConsumingFreshnessTimeMs** 
(follow the convention of other methods)

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to