Skip to content

Commit

Permalink
increasing size of allocator to 100MB
Browse files Browse the repository at this point in the history
  • Loading branch information
soaggarwal committed Mar 10, 2023
1 parent 7c1ef9f commit f2a2ed6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@Slf4j
public class ExtractArrowUtil extends ArrowUtil {
private Iterator<AnsiSqlQueryStreamResponse> inputStream;
private static final long ALLOCATOR_MAX_SIZE_IN_BYTES = 10 * 1024 * 1024; // 10MB
private static final long ALLOCATOR_MAX_SIZE_IN_BYTES = 100 * 1024 * 1024; // 100MB

public ExtractArrowUtil(Iterator<AnsiSqlQueryStreamResponse> inputStream) {
super();
Expand Down

0 comments on commit f2a2ed6

Please sign in to comment.