Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2819#discussion_r227617004
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -1845,6 +1845,18 @@
public static final int CARBON_MINMAX_ALLOWED_BYTE_COUNT_MIN = 10;
public static final int CARBON_MINMAX_ALLOWED_BYTE_COUNT_MAX = 1000;
+ /**
+ * When enabled complete row filters will be handled by carbon in case
of vector.
+ * If it is disabled then only page level pruning will be done by carbon
and row level filtering
+ * will be done by spark for vector.
+ * There is no change in flow for non-vector based queries.
--- End diff --
can you also add in which case it is suggested to set to false? since
default is true
---