This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new 6a7a0668cd [multistage] setting default to INT_MAX for leaf stage limit (#10834) 6a7a0668cd is described below commit 6a7a0668cdd47f0ae0c9b5af218dd2d2b6f1994e Author: Rong Rong <ro...@apache.org> AuthorDate: Mon Jun 5 12:00:36 2023 -0700 [multistage] setting default to INT_MAX for leaf stage limit (#10834) --- .../apache/pinot/query/runtime/plan/server/ServerPlanRequestUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/plan/server/ServerPlanRequestUtils.java b/pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/plan/server/ServerPlanRequestUtils.java index 53846d257f..7a0454798b 100644 --- a/pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/plan/server/ServerPlanRequestUtils.java +++ b/pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/plan/server/ServerPlanRequestUtils.java @@ -57,7 +57,7 @@ import org.slf4j.LoggerFactory; public class ServerPlanRequestUtils { - private static final int DEFAULT_LEAF_NODE_LIMIT = 10_000_000; + private static final int DEFAULT_LEAF_NODE_LIMIT = Integer.MAX_VALUE; private static final Logger LOGGER = LoggerFactory.getLogger(ServerPlanRequestUtils.class); private static final List<String> QUERY_REWRITERS_CLASS_NAMES = ImmutableList.of(PredicateComparisonRewriter.class.getName(), --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org