You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/12/06 00:13:51 UTC

[geode-benchmarks] 01/01: Fixing the number of threads to 48 in all benchmarks

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

upthewaterspout pushed a commit to branch feature/fixed_48_threads
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git

commit e78aa2858e73725ad03f8d05fa630fd6a87fbb3b
Author: Dan Smith <up...@apache.org>
AuthorDate: Wed Dec 5 16:13:15 2018 -0800

    Fixing the number of threads to 48 in all benchmarks
---
 .../main/java/org/apache/geode/benchmark/tests/BenchmarkOperation.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/BenchmarkOperation.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/BenchmarkOperation.java
index d67832e..61ec9d8 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/BenchmarkOperation.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/BenchmarkOperation.java
@@ -59,6 +59,7 @@ public abstract class BenchmarkOperation {
     config.name(this.getClass().getCanonicalName());
     config.warmupSeconds(WARM_UP_TIME);
     config.durationSeconds(BENCHMARK_DURATION);
+    config.threads(48);
     config.role(LOCATOR, 1);
     config.role(SERVER, 2);
     config.role(CLIENT, 1);