Skip to content

Commit 2cab5e5

Browse files
committed
fix(s3stream/wal): increase max record size from 16MiB to 64MiB (#2297)
Signed-off-by: Ning Yu <[email protected]>
1 parent f42f65e commit 2cab5e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

s3stream/src/main/java/com/automq/stream/s3/wal/impl/block/BlockWALService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ public static class BlockWALServiceBuilder {
556556
private long blockDeviceCapacityWant = CAPACITY_NOT_SET;
557557
private Boolean direct = null;
558558
private int initBufferSize = 1 << 20; // 1MiB
559-
private int maxBufferSize = 1 << 24; // 16MiB
559+
private int maxBufferSize = 1 << 26; // 64MiB
560560
private int ioThreadNums = 8;
561561
private long slidingWindowInitialSize = 1 << 20; // 1MiB
562562
private long slidingWindowUpperLimit = 1 << 29; // 512MiB

0 commit comments

Comments
 (0)