klsince commented on code in PR #11299:
URL: https://github.com/apache/pinot/pull/11299#discussion_r1287759735


##########
pinot-tools/src/main/java/org/apache/pinot/tools/perf/QueryRunner.java:
##########
@@ -944,6 +948,16 @@ public double getAvgClientTime() {
       return _avgClientTime;
     }
 
+    public double getPercentile(double p) {

Review Comment:
   maybe we don't need this method, as we have this method below, and we can 
get any percentile we'd need from the list of stats.
   ```
   public List<Statistics> getStatisticsList() {
         return _statisticsList;
       }
   ```



-- 
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]


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

Reply via email to