You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by he...@apache.org on 2019/01/08 21:10:42 UTC

[geode-benchmarks] branch GEODE-6191 updated: use 32 threads

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

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


The following commit(s) were added to refs/heads/GEODE-6191 by this push:
     new 9b0a7a1  use 32 threads
9b0a7a1 is described below

commit 9b0a7a1da0d14baec7ee4fbcb71a4314bd4f093d
Author: Helena A. Bales <hb...@pivotal.io>
AuthorDate: Tue Jan 8 13:10:31 2019 -0800

    use 32 threads
---
 .../src/main/java/org/apache/geode/benchmark/tests/GeodeBenchmark.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/GeodeBenchmark.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/GeodeBenchmark.java
index 074c7bb..ad1724b 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/GeodeBenchmark.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/GeodeBenchmark.java
@@ -31,7 +31,7 @@ public class GeodeBenchmark {
     TestConfig testConfig = new TestConfig();
     testConfig.warmupSeconds(WARM_UP_TIME);
     testConfig.durationSeconds(BENCHMARK_DURATION);
-    testConfig.threads(16);
+    testConfig.threads(32);
     return testConfig;
   }