Skip to content

Commit

Permalink
config: reduce min allowed storage_min_free_bytes
Browse files Browse the repository at this point in the history
Allow setting storage_min_free_bytes configuration as low as 10 MiB.
This will help with testing data rebalancing.
  • Loading branch information
Aaron Fabbri committed Jul 2, 2022
1 parent 27a550b commit ffbc2f9
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 @@ -1164,7 +1164,7 @@ configuration::configuration()
"Threshold of minimim bytes free space before rejecting producers.",
{.needs_restart = needs_restart::no, .visibility = visibility::tunable},
1_GiB,
{.min = 1_GiB})
{.min = 10_MiB})
, enable_metrics_reporter(
*this,
"enable_metrics_reporter",
Expand Down

0 comments on commit ffbc2f9

Please sign in to comment.