Skip to content

Commit

Permalink
Merge pull request redpanda-data#14209 from gousteris/v23.2.x-devprod…
Browse files Browse the repository at this point in the history
…-878

[v23.2.x] scale tests: fix sizing variable name
  • Loading branch information
gousteris authored Oct 17, 2023
2 parents a0e779a + 045019a commit 65ad221
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/rptest/scale_tests/high_throughput_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,10 @@ class HighThroughputTest(PreallocNodesTest):

LEADER_BALANCER_PERIOD_MS = 30000
topic_name = "tiered_storage_topic"
small_segment_size = 4 * KiB
small_segment_size = 4 * kiB
num_segments_per_partition = 1000
unavailable_timeout = 60
msg_size = 128 * KiB
msg_size = 128 * kiB

def __init__(self, test_ctx: TestContext, *args, **kwargs):
self._ctx = test_ctx
Expand Down Expand Up @@ -1049,8 +1049,8 @@ def _run_omb(self, produce_bps,
"subscriptions_per_topic": 1,
"consumer_per_subscription": 2,
"producers_per_topic": 2,
"producer_rate": int(produce_bps / (4 * KiB)),
"message_size": 4 * KiB,
"producer_rate": int(produce_bps / (4 * kiB)),
"message_size": 4 * kiB,
"payload_file": "payload/payload-4Kb.data",
"consumer_backlog_size_GB": 0,
"test_duration_minutes": 3,
Expand Down

0 comments on commit 65ad221

Please sign in to comment.