sunithabeeram commented on a change in pull request #3525: Adding execution 
stats for numSegmentsQueried/Processed/Matched
URL: https://github.com/apache/incubator-pinot/pull/3525#discussion_r235452816
 
 

 ##########
 File path: 
pinot-core/src/main/java/com/linkedin/pinot/core/query/scheduler/QueryScheduler.java
 ##########
 @@ -147,6 +148,11 @@ public void stop() {
         
dataTableMetadata.getOrDefault(DataTable.NUM_ENTRIES_SCANNED_IN_FILTER_METADATA_KEY,
 INVALID_NUM_SCANNED));
     long numEntriesScannedPostFilter = Long.parseLong(
         
dataTableMetadata.getOrDefault(DataTable.NUM_ENTRIES_SCANNED_POST_FILTER_METADATA_KEY,
 INVALID_NUM_SCANNED));
+    long numSegmentsProcessed = Long.parseLong(
+        
dataTableMetadata.getOrDefault(DataTable.NUM_ENTRIES_SCANNED_POST_FILTER_METADATA_KEY,
 INVALID_SEGMENTS_COUNT));
 
 Review comment:
   The lookup key needs to be updated; its currently referring to post-filter 
metrics.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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