Skip to content

Commit

Permalink
Set MIN_PER_PARTITION_MEMORY to 10 MiB instead of 4 MiB to match the …
Browse files Browse the repository at this point in the history
…change in the backend limit. (apache#28964)
  • Loading branch information
dpcollins-google authored Oct 13, 2023
1 parent 250483c commit 47d0fd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class SubscribeTransform extends PTransform<PBegin, PCollection<Sequenced

private static final long MEBIBYTE = 1L << 20;
private static final long SOFT_MEMORY_LIMIT = 512 * MEBIBYTE;
private static final long MIN_PER_PARTITION_MEMORY = 4 * MEBIBYTE;
private static final long MIN_PER_PARTITION_MEMORY = 10 * MEBIBYTE;
private static final long MAX_PER_PARTITION_MEMORY = 100 * MEBIBYTE;

private static final MemoryLimiter LIMITER =
Expand Down

0 comments on commit 47d0fd5

Please sign in to comment.