Skip to content

Commit

Permalink
Merge pull request #5859 from andrwng/5713
Browse files Browse the repository at this point in the history
upgrade_test: reduce workload throughput
  • Loading branch information
andrwng committed Aug 5, 2022
2 parents e63d562 + 9fc94cd commit 39c94a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/rptest/tests/upgrade_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ def setUp(self):
super(UpgradeWithWorkloadTest, self).setUp()
# Start at a version that supports rolling restarts.
self.initial_version = (22, 1, 3)
self.producer_msgs_per_sec = 200

# Use a relatively low throughput to give the restarted node a chance
# to catch up. If the node is particularly slow compared to the others
# (e.g. a locally-built debug binary), catching up can take a while.
self.producer_msgs_per_sec = 10
install_opts = InstallOptions(version=self.initial_version)
self.start_redpanda(num_nodes=3, install_opts=install_opts)
self.installer = self.redpanda._installer
Expand Down

0 comments on commit 39c94a3

Please sign in to comment.