Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2083#discussion_r177143560
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -1618,6 +1618,15 @@
*/
public static final String
CARBON_INVISIBLE_SEGMENTS_PRESERVE_COUNT_DEFAULT = "200";
+ /**
+ * Internal configuration for running query on pre aggregate created on
streaming table
+ * this will be used when plan got changed from main table to pre
aggregate for streaming
+ * table.
+ */
+ public static final String CARBON_STREAMING_SEGMENT =
"carbon.streaming.segment";
--- End diff --
If this is not set by user, move it to the class use it
---