Skip to content

Commit 12cfd00

Browse files
committed
Restore pool size
1 parent 1f62e03 commit 12cfd00

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/test/java/com/nvidia/spark/rapids/jni/kudo/KudoSerializerTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@
4747
public class KudoSerializerTest extends CudfTestBase {
4848
private static final Logger log = LoggerFactory.getLogger(KudoSerializerTest.class);
4949

50+
static final long RMM_POOL_SIZE_LARGE = 10L * 1024 * 1024 * 1024;
51+
5052
public KudoSerializerTest() {
53+
super(RmmAllocationMode.POOL, RMM_POOL_SIZE_LARGE);
5154
}
5255

5356
@Test
@@ -813,7 +816,7 @@ static Table buildLargeTestTable() {
813816
List<ColumnVector> allCols = new ArrayList<>();
814817
List<ColumnVector> tableCols = new ArrayList<>();
815818

816-
final int nonNullCount = Integer.MAX_VALUE / 128 - 21; // to avoid OOM
819+
final int nonNullCount = Integer.MAX_VALUE / 512 - 21; // to avoid OOM
817820
final int nullCount = 11; // to add nulls
818821
final int totalCount = nonNullCount + nullCount;
819822

0 commit comments

Comments
 (0)