From 8b8062609467f562601bcd7175d20b84ad3a9c96 Mon Sep 17 00:00:00 2001 From: Hong-Yi Chen <131829440+apalan60@users.noreply.github.com> Date: Mon, 31 Mar 2025 20:45:31 +0800 Subject: [PATCH] KAFKA-18959 increase the num_workers from 9 to 14 (#19274) [JIRA](https://issues.apache.org/jira/browse/KAFKA-18959) This PR adjusts the default node count for system tests since some tests are using more than 9 nodes. This change ensures such test cases can be run successfully without manual configuration. Reviewers: Chia-Ping Tsai --- vagrant/system-test-Vagrantfile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant/system-test-Vagrantfile.local b/vagrant/system-test-Vagrantfile.local index 898c02e7720..b3e5abc8a99 100644 --- a/vagrant/system-test-Vagrantfile.local +++ b/vagrant/system-test-Vagrantfile.local @@ -18,7 +18,7 @@ # it to Vagrantfile.local num_zookeepers = 0 num_brokers = 0 -num_workers = 9 +num_workers = 14 base_box = "kafkatest-worker"