This is an automated email from the ASF dual-hosted git repository.
wirebaron pushed a commit to branch gcpscaletest
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git
The following commit(s) were added to refs/heads/gcpscaletest by this push:
new eadd01d Fixing at 4 threads
eadd01d is described below
commit eadd01de29a24abb78bee0837b9658c7ecc35e8f
Author: Brian Rowe <[email protected]>
AuthorDate: Thu Dec 13 09:35:06 2018 -0800
Fixing at 4 threads
---
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 0c86347..39912cb 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() * 2;
+ int threads = 4;
public WorkloadConfig() {}