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/04/19 17:28:25 UTC

[geode-benchmarks] 01/01: Lower thread count for testing 1.9 vs 1.8

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

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

commit 723755ea79ad9c1cf892579f39bb857393c63758
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Fri Apr 19 10:27:55 2019 -0700

    Lower thread count for testing 1.9 vs 1.8
---
 harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java b/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java
index 1ca4525..0c86347 100644
--- a/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java
+++ b/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java
@@ -32,7 +32,7 @@ import org.apache.geode.perftest.yardstick.YardstickTask;
 public class WorkloadConfig implements Serializable {
   long durationSeconds = 1;
   long warmupSeconds = 0;
-  int threads = Runtime.getRuntime().availableProcessors() * 16;
+  int threads = Runtime.getRuntime().availableProcessors() * 2;
 
   public WorkloadConfig() {}