Skip to content

Commit

Permalink
fix(broker): increase gateway transport buffer to default 64 megabyte
Browse files Browse the repository at this point in the history
  • Loading branch information
menski committed Mar 15, 2019
1 parent 0ff7f5f commit 449ea10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/src/main/config/zeebe.cfg.toml
Expand Up @@ -56,7 +56,7 @@

# Sets size of the transport buffer to send and received messages between gateway and broker cluster.
# This setting can also be overridden using the environment variable ZEEBE_GATEWAY_TRANSPORT_BUFFER.
# transportBuffer = "2M"
# transportBuffer = "128M"

# Sets the timeout of requests send to the broker cluster
# This setting can also be overridden using the environment variable ZEEBE_GATEWAY_REQUEST_TIMEOUT.
Expand Down
Expand Up @@ -21,7 +21,7 @@ public class ConfigurationDefaults {
public static final int DEFAULT_PORT = 26500;
public static final String DEFAULT_CONTACT_POINT_HOST = "127.0.0.1";
public static final int DEFAULT_CONTACT_POINT_PORT = 26501;
public static final String DEFAULT_TRANSPORT_BUFFER_SIZE = "2M";
public static final String DEFAULT_TRANSPORT_BUFFER_SIZE = "128M";
public static final int DEFAULT_MANAGEMENT_THREADS = 1;
public static final String DEFAULT_REQUEST_TIMEOUT = "15s";
}

0 comments on commit 449ea10

Please sign in to comment.