You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2019/01/04 19:43:05 UTC

[geode-benchmarks] branch feature/large_socket_buffer created (now c9b6727)

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

upthewaterspout pushed a change to branch feature/large_socket_buffer
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


      at c9b6727  Increasing the socket buffer size for peers to 4 MB

This branch includes the following new commits:

     new c9b6727  Increasing the socket buffer size for peers to 4 MB

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[geode-benchmarks] 01/01: Increasing the socket buffer size for peers to 4 MB

Posted by up...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c9b6727e02eeb69c8e2ff43bb7f021c8cc746ce3
Author: Dan Smith <up...@apache.org>
AuthorDate: Fri Jan 4 11:42:00 2019 -0800

    Increasing the socket buffer size for peers to 4 MB
---
 .../main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java | 1 +
 1 file changed, 1 insertion(+)

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..979f471 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, "4000000");
     return properties;
   }