Github user mtaylor commented on the issue:
https://github.com/apache/activemq-artemis/pull/1643
@pgfox There is some overhead in managing MBeans (creating, destroying and
cleaning up). The intent with the new console bits was to avoid any reliance
on MBeans, so that going forward users could switch off MBean registration for
certain object types and still be able to use management, via the
ActiveMQServerControl. The overhead doesn't seem that large at first, but once
we start getting into the 1000s of addresses or connections it can start
becoming significant. Could you move the logic into a helper class or use the
AddressInfo object instead?
---