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 22:04:10 UTC

[geode-benchmarks] branch GEODE-6191 updated: use 256 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 a4c31a8  use 256 threads
a4c31a8 is described below

commit a4c31a8e5e830a9f3f4b45e990928a3612853155
Author: Helena A. Bales <hb...@pivotal.io>
AuthorDate: Tue Jan 8 14:03:55 2019 -0800

    use 256 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 4d34887..3e2db29 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(64);
+    testConfig.threads(256);
     return testConfig;
   }