Skip to content

Commit

Permalink
config: Increase transform logs buffer cap
Browse files Browse the repository at this point in the history
prev: 100_KiB
new:  500_KiB

Integration tests have started failing due to the buffer being full.

Signed-off-by: Oren Leiman <oren.leiman@redpanda.com>
  • Loading branch information
oleiman committed Mar 8, 2024
1 parent 8684488 commit badd646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/config/configuration.cc
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ configuration::configuration()
"calculated as the total size of buffered (i.e. emitted but not yet "
"produced) log messages.",
{.needs_restart = needs_restart::yes, .visibility = visibility::tunable},
100_KiB,
500_KiB,
{.min = 100_KiB, .max = 2_MiB})
, data_transforms_logging_flush_interval_ms(
*this,
Expand Down

0 comments on commit badd646

Please sign in to comment.