We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e389179 commit 8792c8bCopy full SHA for 8792c8b
modules/parquet-data-format/src/main/java/com/parquet/parquetdataformat/memory/ArrowBufferPool.java
@@ -25,11 +25,11 @@ public class ArrowBufferPool implements Closeable {
25
private final long maxChildAllocation;
26
27
public ArrowBufferPool(Settings settings) {
28
- long maxAllocationInBytes = getMaxAllocationInBytes(settings);
+ long maxAllocationInBytes = 10L * 1024 * 1024 * 1024;
29
30
logger.info("Max native memory allocation for ArrowBufferPool: {} bytes", maxAllocationInBytes);
31
this.rootAllocator = new RootAllocator(maxAllocationInBytes);
32
- this.maxChildAllocation = maxAllocationInBytes;
+ this.maxChildAllocation = 1024 * 1024 * 1024;
33
}
34
35
/**
0 commit comments