Github user ptgoetz commented on a diff in the pull request:
https://github.com/apache/incubator-storm/pull/103#discussion_r12393972
--- Diff: storm-core/src/jvm/backtype/storm/Config.java ---
@@ -84,8 +84,27 @@
*/
public static final String STORM_MESSAGING_NETTY_CLIENT_WORKER_THREADS
= "storm.messaging.netty.client_worker_threads";
public static final Object
STORM_MESSAGING_NETTY_CLIENT_WORKER_THREADS_SCHEMA = Number.class;
+
+ /**
+ * If the Netty messaging layer is busy, the Netty client will try to
batch message as more as possible up to the size of
STORM_NETTY_MESSAGE_BATCH_SIZE bytes
+ */
+ public static final String STORM_NETTY_MESSAGE_BATCH_SIZE =
"netty.transfer.batch.size";
+ public static final Object STORM_NETTY_MESSAGE_BATCH_SIZE_SCHEMA =
Number.class;
--- End diff --
This and all other new configuration parameters should be added to
`defaults.yaml` with their default values.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---