Github user satishd commented on a diff in the pull request:
https://github.com/apache/storm/pull/1618#discussion_r74365279
--- Diff:
storm-core/src/jvm/org/apache/storm/messaging/netty/StormClientHandler.java ---
@@ -60,7 +60,6 @@ public void messageReceived(ChannelHandlerContext ctx,
MessageEvent event) {
//This should be the metrics, and there should only be one
of them
List<TaskMessage> list = (List<TaskMessage>)message;
if (list.size() < 1) throw new RuntimeException("Didn't
see enough load metrics ("+client.getDstAddress()+") "+list);
- if (list.size() != 1) LOG.warn("Messages are not being
delivered fast enough, got "+list.size()+" metrics messages at
once("+client.getDstAddress()+")");
--- End diff --
nit: Can we have a debug statement saying more than one task message
received instead of the removed warning message?
---
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.
---