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:59:04 UTC

[geode-benchmarks] branch fix-for-1.8.0 updated: fix the buffer size

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 a4064cf  fix the buffer size
a4064cf is described below

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

    fix the buffer size
---
 .../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 3c8b075..9e12635 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,7 +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");
+    properties.setProperty(ConfigurationProperties.SOCKET_BUFFER_SIZE, "4000000");
     return properties;
   }