mirror of https://github.com/apache/druid.git
Handling OOM error in ExpressionVector setup by reducing number of rows (#12186)
* Handling OOM error in ExpressionVector setup by reducing number of rows * Removing row size to 10K in sanity tests
This commit is contained in:
parent
dc1703d5f9
commit
cc8b9c0b6e
|
@ -95,7 +95,7 @@ public class ExpressionVectorSelectorsTest
|
||||||
"concat(string1, nonexistent)"
|
"concat(string1, nonexistent)"
|
||||||
);
|
);
|
||||||
|
|
||||||
private static final int ROWS_PER_SEGMENT = 100_000;
|
private static final int ROWS_PER_SEGMENT = 10_000;
|
||||||
|
|
||||||
private static QueryableIndex INDEX;
|
private static QueryableIndex INDEX;
|
||||||
private static Closer CLOSER;
|
private static Closer CLOSER;
|
||||||
|
|
|
@ -93,7 +93,7 @@ public class SqlVectorizedExpressionSanityTest extends InitializedNullHandlingTe
|
||||||
"SELECT long5 IS NULL, long3 IS NOT NULL, count(*) FROM foo GROUP BY 1,2 ORDER BY 3"
|
"SELECT long5 IS NULL, long3 IS NOT NULL, count(*) FROM foo GROUP BY 1,2 ORDER BY 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
private static final int ROWS_PER_SEGMENT = 100_000;
|
private static final int ROWS_PER_SEGMENT = 10_000;
|
||||||
|
|
||||||
private static QueryableIndex INDEX;
|
private static QueryableIndex INDEX;
|
||||||
private static Closer CLOSER;
|
private static Closer CLOSER;
|
||||||
|
|
Loading…
Reference in New Issue