Skip to content

Commit

Permalink
Merge #84686
Browse files Browse the repository at this point in the history
84686: Adjust per_changefeed_limit to 128MiB r=shermanCRL a=shermanCRL

Adjust changefeed.memory.per_changefeed_limit to 128MiB. Default of 1GiB could pressure GC, causing GC assist, affecting foreground traffic.

Informs #84582

Release Notes (enterprise change): Reduce foreground latency impact when performing changefeed backfills.

Co-authored-by: Matt Sherman <[email protected]>
  • Loading branch information
craig[bot] and shermanCRL committed Jul 20, 2022
2 parents b77d49e + ea7d6fb commit 96171e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ccl/changefeedccl/changefeedbase/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var PerChangefeedMemLimit = settings.RegisterByteSizeSetting(
settings.TenantWritable,
"changefeed.memory.per_changefeed_limit",
"controls amount of data that can be buffered per changefeed",
1<<30,
1<<27, // 128MiB
)

// SlowSpanLogThreshold controls when we will log slow spans.
Expand Down

0 comments on commit 96171e0

Please sign in to comment.