Skip to content

Commit

Permalink
Increase limits
Browse files Browse the repository at this point in the history
  • Loading branch information
pmattione-nvidia committed Sep 15, 2024
1 parent e0d87ef commit ec1a482
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions java/src/test/java/ai/rapids/cudf/TableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8923,8 +8923,8 @@ void testParquetWriteToBufferChunked() {
ParquetWriterOptions options = optBuilder.build();
ParquetWriterOptions optionsNoCompress =
optBuilder.withCompressionType(CompressionType.NONE)
.withRowGroupSizeRows(4)
.withRowGroupSizeBytes(64)
.withRowGroupSizeRows(10000)
.withRowGroupSizeBytes(10000)
.build();
try (Table table0 = getExpectedFileTable(columns);
MyBufferConsumer consumer = new MyBufferConsumer()) {
Expand Down Expand Up @@ -9011,8 +9011,8 @@ void testParquetWriteToFileUncompressedNoStats() throws IOException {
.withDecimalColumn("_c7", 4)
.withDecimalColumn("_c8", 6)
.withCompressionType(CompressionType.NONE)
.withRowGroupSizeRows(4)
.withRowGroupSizeBytes(64)
.withRowGroupSizeRows(10000)
.withRowGroupSizeBytes(10000)
.withStatisticsFrequency(ParquetWriterOptions.StatisticsFrequency.NONE)
.build();
try (TableWriter writer = Table.writeParquetChunked(options, tempFile.getAbsoluteFile())) {
Expand Down

0 comments on commit ec1a482

Please sign in to comment.