You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2019/06/25 15:44:19 UTC

[geode-benchmarks] branch develop updated: Set membership timeout to be more resilient to benchmark load (#87)

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2fa4d83  Set membership timeout to be more resilient to benchmark load (#87)
2fa4d83 is described below

commit 2fa4d836332a7f6fc94f6320fe7af02a5433fce6
Author: Kamilla Aslami <ka...@pivotal.io>
AuthorDate: Tue Jun 25 08:44:15 2019 -0700

    Set membership timeout to be more resilient to benchmark load (#87)
---
 .../main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java
index 77b4eb8..9f27dbe 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java
@@ -51,6 +51,7 @@ public class GeodeProperties {
     properties.setProperty(ConfigurationProperties.ENABLE_TIME_STATISTICS, "true");
     properties.setProperty(ConfigurationProperties.LOG_LEVEL, "config");
     properties.setProperty(ConfigurationProperties.STATISTIC_SAMPLING_ENABLED, "true");
+    properties.setProperty(ConfigurationProperties.MEMBER_TIMEOUT, "8000");
     return properties;
 
   }