Github user kunal642 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1446#discussion_r150401450
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -56,6 +56,8 @@
*/
public static final String CARBON_INPUT_SEGMENTS =
"carbon.input.segments.";
+ public static final String VALIDATE_CARBON_INPUT_SEGMENTS =
"validate.carbon.input.segments.";
--- End diff --
This property is will decide whether the segments have to be looked up and
validated or not.
For incremental load into pre-aggregate table as only the last segment
would be loaded therefore we dont need to lookup or validate the segment that
has been set.
---