IndexTask: Raise default maxTotalRows. (#4579)

150k is very low, given that it should only be limited by disk space
rather than JVM heap.
This commit is contained in:
Gian Merlino 2017-07-20 13:55:07 -07:00 committed by Fangjin Yang
parent 2be7068f6e
commit 38b03f56b4
1 changed files with 1 additions and 2 deletions

View File

@ -890,10 +890,9 @@ public class IndexTask extends AbstractTask
public static class IndexTuningConfig implements TuningConfig, AppenderatorConfig
{
private static final int DEFAULT_MAX_ROWS_IN_MEMORY = 75_000;
private static final int DEFAULT_MAX_TOTAL_ROWS = 150_000;
private static final int DEFAULT_MAX_TOTAL_ROWS = 20_000_000;
private static final IndexSpec DEFAULT_INDEX_SPEC = new IndexSpec();
private static final int DEFAULT_MAX_PENDING_PERSISTS = 0;
private static final boolean DEFAULT_BUILD_V9_DIRECTLY = true;
private static final boolean DEFAULT_FORCE_EXTENDABLE_SHARD_SPECS = false;
private static final boolean DEFAULT_GUARANTEE_ROLLUP = false;
private static final boolean DEFAULT_REPORT_PARSE_EXCEPTIONS = false;