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:52:35 UTC

[geode-benchmarks] branch fix-for-1.8.0 updated: set the socket buffer size to the right number

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


The following commit(s) were added to refs/heads/fix-for-1.8.0 by this push:
     new ce89d19  set the socket buffer size to the right number
ce89d19 is described below

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

    set the socket buffer size to the right number
---
 .../java/org/apache/geode/benchmark/parameters/GeodeProperties.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 5f1afef..3c8b075 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
@@ -50,7 +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");
+    properties.setProperty(ConfigurationProperties.SOCKET_BUFFER_SIZE, "4000000");
     return properties;
 
   }