aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-11-29 19:43:32 +0100
committerGitHub <noreply@github.com>2023-11-29 19:43:32 +0100
commitbc104495b536d35e2975482065f3794f39a11041 (patch)
tree51b99fe00eb755588d6bff005313f24c5d9483f4
parentb47bd3dfa14506941ff2f2b49e2dab50b8a1d121 (diff)
parentb2af907ddb72a54f27127081dcb71c4da7246464 (diff)
Merge pull request #29504 from vespa-engine/vekterli/1000x-less-zk-prealloc
Reduce CC unit test ZooKeeper WAL file preallocations by three orders of magnitude
-rw-r--r--clustercontroller-core/pom.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/clustercontroller-core/pom.xml b/clustercontroller-core/pom.xml
index 8bdfb25e221..7f845a26c73 100644
--- a/clustercontroller-core/pom.xml
+++ b/clustercontroller-core/pom.xml
@@ -137,6 +137,10 @@
<configuration>
<forkCount>4</forkCount>
<rerunFailingTestsCount>5</rerunFailingTestsCount>
+ <systemPropertyVariables>
+ <!-- Avoid 64 MiB default in favor of just 64 KiB -->
+ <zookeeper.preAllocSize>64</zookeeper.preAllocSize>
+ </systemPropertyVariables>
</configuration>
</plugin>
</plugins>