Skip to content

Commit

Permalink
[timeseries] Fix Num Groups Limit Default Value (#15026)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitsultana authored Feb 11, 2025
1 parent 64dc922 commit db078e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
public class RangeTimeSeriesRequest {
// TODO: It's not ideal to have another default, that plays with numGroupsLimit, etc.
public static final int DEFAULT_SERIES_LIMIT = 100_000;
public static final int DEFAULT_NUM_GROUPS_LIMIT = -1;
public static final int DEFAULT_NUM_GROUPS_LIMIT = 100_000;
/** Engine allows a Pinot cluster to support multiple Time-Series Query Languages. */
private final String _language;
/** Query is the raw query sent by the caller. */
Expand Down

0 comments on commit db078e7

Please sign in to comment.