Github user clebertsuconic commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/960#discussion_r96234261
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/QueueImpl.java
---
@@ -3159,6 +3162,9 @@ public void run() {
connection.killMessage(server.getNodeID());
remotingService.removeConnection(connection.getID());
connection.fail(ActiveMQMessageBundle.BUNDLE.connectionsClosedByManagement(connection.getRemoteAddress()));
+ //break once a consumer gets killed. This can
prevent all
+ //consumers to this queue get killed all at once.
+ break;
--- End diff --
this fix is not valid....
We need all the slow consumers to be killed.
We need to calculate the rate properly then. threshold / number of
consuemrs for instance.
---
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.
---