Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2210#discussion_r183822969
--- Diff:
core/src/main/java/org/apache/carbondata/core/stats/QueryStatisticsConstants.java
---
@@ -58,6 +58,28 @@
String PAGE_SCANNED = "The number of page scanned";
+ /**
+ * measure filling time includes time taken for reading all measures
data from a given offset
+ * and adding each column data to an array. Includes total time for 1
query result iterator.
+ */
+ String MEASURE_FILLING_TIME = "measure filling time";
+
+ /**
+ * dimension filling time includes time taken for reading all dimensions
data from a given offset
+ * and filling each column data to byte array. Includes total time for 1
query result iterator.
+ */
+ String DIMENSION_FILLING_TIME = "dimension filling time";
--- End diff --
Change this to key column filling time
---