vikramahuja1001 commented on a change in pull request #3333: [CARBONDATA-3476] 
Fix Read time and scan time stats in executor log for filter query
URL: https://github.com/apache/carbondata/pull/3333#discussion_r306742058
 
 

 ##########
 File path: 
core/src/main/java/org/apache/carbondata/core/scan/scanner/impl/BlockletFilterScanner.java
 ##########
 @@ -283,25 +286,32 @@ private BlockletScannedResult 
executeFilter(RawBlockletColumnChunks rawBlockletC
       }
     }
 
+    long measureReadTime = System.currentTimeMillis();
     int[][] allSelectedMeasureColumnIndexRange =
         blockExecutionInfo.getAllSelectedMeasureIndexRange();
     MeasureRawColumnChunk[] projectionListMeasureChunk = 
rawBlockletColumnChunks.getDataBlock()
         .readMeasureChunks(fileReader, allSelectedMeasureColumnIndexRange);
+    measureReadTime = System.currentTimeMillis() - measureReadTime;
+
 
 Review comment:
   remove this extra space

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

Reply via email to