Github user roshannaik commented on a diff in the pull request:
https://github.com/apache/storm/pull/2241#discussion_r129734715
--- Diff: storm-client/src/jvm/org/apache/storm/Config.java ---
@@ -574,13 +536,21 @@
public static final String
TOPOLOGY_TICK_TUPLE_FREQ_SECS="topology.tick.tuple.freq.secs";
/**
- * @deprecated this is no longer supported
- * Configure the wait strategy used for internal queuing. Can be used
to tradeoff latency
- * vs. throughput
+ * The number of tuples to batch before sending to the destination
executor.
*/
- @Deprecated
- @isString
- public static final String
TOPOLOGY_DISRUPTOR_WAIT_STRATEGY="topology.disruptor.wait.strategy";
+ @isInteger
+ @isPositiveNumber
+ @NotNull
+ public static final String
TOPOLOGY_PRODUCER_BATCH_SIZE="topology.producer.batch.size";
+
+ /**
+ * How often to send flush tuple to the executors for flushing out
batched events.
+ */
+ @isInteger
+ @isPositiveNumber(includeZero = true)
+ @NotNull
+ public static final String
TOPOLOGY_FLUSH_TUPLE_FREQ_MILLIS="topology.flush.tuple.freq.millis";
--- End diff --
right.
---
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.
---