You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bu...@apache.org on 2020/06/01 23:02:12 UTC

[geode-benchmarks] branch sni updated: run with 100 threads on 10K region entries

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

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


The following commit(s) were added to refs/heads/sni by this push:
     new 39a5344  run with 100 threads on 10K region entries
39a5344 is described below

commit 39a5344d81be7d1efce5f286968254a645dec8f6
Author: Bill Burcham <bb...@pivotal.io>
AuthorDate: Mon Jun 1 16:00:46 2020 -0700

    run with 100 threads on 10K region entries
---
 .../org/apache/geode/benchmark/tests/PartitionedPutBenchmark.java     | 4 ++--
 .../org/apache/geode/benchmark/tests/PartitionedPutBenchmarkSNI.java  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmark.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmark.java
index e831e6a..4324414 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmark.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmark.java
@@ -41,7 +41,7 @@ public class PartitionedPutBenchmark implements PerformanceTest {
 
   // TODO: reinstate
   //  private LongRange keyRange = new LongRange(0, 1000000);
-  private LongRange keyRange = new LongRange(0, 1000);
+  private LongRange keyRange = new LongRange(0, 10_000);
 
   public PartitionedPutBenchmark() {}
 
@@ -58,7 +58,7 @@ public class PartitionedPutBenchmark implements PerformanceTest {
   public TestConfig configure() {
     TestConfig config = GeodeBenchmark.createConfig();
     // TODO: delete this once test is working!
-    config.threads(10);
+    config.threads(100);
     ClientServerTopology.configure(config);
     before(config, new CreatePartitionedRegion(), SERVER);
     before(config, new CreateClientProxyRegion(), CLIENT);
diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmarkSNI.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmarkSNI.java
index 62067de..841be17 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmarkSNI.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/PartitionedPutBenchmarkSNI.java
@@ -43,7 +43,7 @@ public class PartitionedPutBenchmarkSNI implements PerformanceTest {
 
   // TODO; reinstate
   //  private LongRange keyRange = new LongRange(0, 1000000);
-  private LongRange keyRange = new LongRange(0, 1000);
+  private LongRange keyRange = new LongRange(0, 10_000);
 
   public PartitionedPutBenchmarkSNI() {}
 
@@ -60,7 +60,7 @@ public class PartitionedPutBenchmarkSNI implements PerformanceTest {
   public TestConfig configure() {
     TestConfig config = GeodeBenchmark.createConfig();
     // TODO: delete this once test is working!
-    config.threads(10);
+    config.threads(100);
     ClientServerTopologyWithSNIProxy.configure(config);
     before(config, new CreatePartitionedRegion(), SERVER);
     before(config, new CreateClientProxyRegion(), CLIENT);