From 505897e0b6e4b2aabaf8cf1650fa11d0d2ca2473 Mon Sep 17 00:00:00 2001 From: Michal Maslanka Date: Thu, 26 Oct 2023 16:35:53 +0200 Subject: [PATCH] tests: do not reserve disk space in full_node_test Additional reservation of disk space influence balancer logic and makes external calculation (based on actual disk space) inaccurate. Dropped reservation in `full_node_test` as it is not requires since there are no topics with reclaimable retention. Fixes: #8220 Signed-off-by: Michal Maslanka (cherry picked from commit 70c0f7ae4b613628a50e4e5d6e545f387eb7946b) --- tests/rptest/tests/partition_balancer_test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/rptest/tests/partition_balancer_test.py b/tests/rptest/tests/partition_balancer_test.py index 8366e539b3b2e..40b0339e44ecd 100644 --- a/tests/rptest/tests/partition_balancer_test.py +++ b/tests/rptest/tests/partition_balancer_test.py @@ -658,9 +658,8 @@ def test_full_nodes(self): "health_monitor_max_metadata_age": 3000, "log_segment_size": 104857600, # 100 MiB "retention_local_target_capacity_percent": 100.0, - # add disk reservation to buffer - "disk_reservation_percent": 10.0, - "retention_local_trim_interval": 3000 + "retention_local_trim_interval": 3000, + "disk_reservation_percent": 0.0 }, environment={"__REDPANDA_TEST_DISK_SIZE": disk_size})