This is an automated email from the ASF dual-hosted git repository. upthewaterspout pushed a commit to branch concourse-staging in repository https://gitbox.apache.org/repos/asf/geode.git
commit 4abe35ebc928c00ccfcd3ec4ae0e9b60f5b367ad Author: Dan Smith <[email protected]> AuthorDate: Mon Aug 13 11:47:40 2018 -0700 Reducing the parallelism of DistributedTest We are seeing 5% of our builds fail with membership errors due to heartbeat timeouts. We also see that the DistributedTest job is running with a 300 load average. Reducing the parallelism to avoid overloading the machine. --- ci/pipelines/geode-build/test-stubs/distributed.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pipelines/geode-build/test-stubs/distributed.yml b/ci/pipelines/geode-build/test-stubs/distributed.yml index da4ca1c..aa5fd27 100644 --- a/ci/pipelines/geode-build/test-stubs/distributed.yml +++ b/ci/pipelines/geode-build/test-stubs/distributed.yml @@ -22,11 +22,11 @@ metadata: dunit: parallel: true # max number of docker containers to run, generally cpus/2 - forks: 48 + forks: 24 cpus: 96 # specified in Gigabytes. ram: 180 # specified in seconds - call_stack_timeout: 3600 - timeout: 1h15m + call_stack_timeout: 7200 + timeout: 2h15m size: []
