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:24 UTC

[geode-benchmarks] branch release/1.9.0 created (now 723755e)

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

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


      at 723755e  Lower thread count for testing 1.9 vs 1.8

This branch includes the following new commits:

     new 723755e  Lower thread count for testing 1.9 vs 1.8

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by jb...@apache.org.
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() {}