This is an automated email from the ASF dual-hosted git repository.
heybales pushed a commit to branch poolTuning
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git
The following commit(s) were added to refs/heads/poolTuning by this push:
new a6bbada only tune min pool connections
a6bbada is described below
commit a6bbada118d1be20eaf5a8a8d0a6abce86811442
Author: Helena A. Bales <[email protected]>
AuthorDate: Thu Feb 14 11:46:33 2019 -0800
only tune min pool connections
---
.../src/main/java/org/apache/geode/benchmark/tasks/StartClient.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartClient.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartClient.java
index a08ac67..056c8d4 100644
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartClient.java
+++
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartClient.java
@@ -48,8 +48,8 @@ public class StartClient implements Task {
ClientCache clientCache = new
ClientCacheFactory(GeodeProperties.clientProperties())
.setPdxSerializer(new
ReflectionBasedAutoSerializer("benchmark.geode.data.*"))
.addPoolLocator(locator.getHostAddress(), locatorPort)
-// .setPoolIdleTimeout(-1)
- .setPoolMinConnections(100)
+ .setPoolIdleTimeout(-1)
+// .setPoolMinConnections(100)
.set(ConfigurationProperties.STATISTIC_ARCHIVE_FILE, statsFile)
.create();