Skip to content

Commit

Permalink
Revert "cloud_storage: Increse disk tput limit a bit"
Browse files Browse the repository at this point in the history
This reverts commit 0ae2ad2.
  • Loading branch information
nvartolomei committed Jul 16, 2024
1 parent cd0a087 commit 1975b7d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/v/cloud_storage/materialized_resources.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,8 @@ get_throughput_limit(std::optional<size_t> device_throughput) {
}

auto tp = std::min(hard_limit, device_throughput.value());
constexpr auto tput_overshoot_frac = 16;
return {
.disk_node_throughput_limit = tp + (tp / tput_overshoot_frac),
.disk_node_throughput_limit = tp,
.download_shard_throughput_limit = tp / ss::smp::count,
};
}
Expand Down

0 comments on commit 1975b7d

Please sign in to comment.