Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1435#discussion_r148957017
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -1376,6 +1376,32 @@
public static final String BITSET_PIPE_LINE_DEFAULT = "true";
+ /**
+ * The total size of carbon data
+ */
+ public static final String CARBON_TOTAL_DATA_SIZE = "datasize";
+
+ /**
+ * The total size of carbon index
+ */
+ public static final String CARBON_TOTAL_INDEX_SIZE = "indexsize";
+
+ /**
+ * ENABLE_CALCULATE_DATA_INDEX_SIZE
+ */
+ @CarbonProperty public static final String ENABLE_CALCULATE_SIZE =
"carbon.enable.calculate.size";
+
+ /**
+ * DEFAULT_ENABLE_CALCULATE_DATA_INDEX_SIZE
+ */
+ @CarbonProperty public static final String DEFAULT_ENABLE_CALCULATE_SIZE
= "true";
--- End diff --
ok
---