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/04 17:23:33 UTC

[geode-benchmarks] 01/01: set socket buffer size for use with 1.8.0

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

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

commit fa8faf12d69c85a35288b6d9d3dc9f7db1a87721
Author: Helena A. Bales <hb...@pivotal.io>
AuthorDate: Fri Jan 4 09:23:09 2019 -0800

    set socket buffer size for use with 1.8.0
---
 .../java/org/apache/geode/benchmark/parameters/GeodeProperties.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java
index 32178ba..5f1afef 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java
@@ -36,6 +36,7 @@ public class GeodeProperties {
     properties.setProperty(ConfigurationProperties.DISTRIBUTED_SYSTEM_ID, "0");
     properties.setProperty(ConfigurationProperties.ENABLE_CLUSTER_CONFIGURATION, "false");
     properties.setProperty(ConfigurationProperties.USE_CLUSTER_CONFIGURATION, "false");
+    properties.setProperty(ConfigurationProperties.SOCKET_BUFFER_SIZE, "40000000");
     return properties;
   }
 
@@ -49,6 +50,7 @@ public class GeodeProperties {
     properties.setProperty(ConfigurationProperties.ENABLE_TIME_STATISTICS, "true");
     properties.setProperty(ConfigurationProperties.LOG_LEVEL, "config");
     properties.setProperty(ConfigurationProperties.STATISTIC_SAMPLING_ENABLED, "true");
+    properties.setProperty(ConfigurationProperties.SOCKET_BUFFER_SIZE, "40000000");
     return properties;
 
   }