在集群HornetQ环境中如何找出队列的消费者数量?

发布于 2024-12-27 20:00:59 字数 320 浏览 1 评论 0原文

在没有集群(连接多个活动 HornetQ 服务器)的情况下,我使用以下代码来了解队列的消费者数量:

ClientSession.QueueQuery result;
result = session.queueQuery(new SimpleString(queueName));
count = result.getConsumerCount();

但是,如果我使用具有多个相互连接的活动 HornetQ 服务器的集群设置,每个服务器只会返回仅连接到自己的消费者,而不返回连接到其他服务器的消费者。

如何获取也连接到其他服务器的消费者数量?

Without clustering (multiple number of active HornetQ servers connected), I used the following code, to get to know the number of consumers of a queue:

ClientSession.QueueQuery result;
result = session.queueQuery(new SimpleString(queueName));
count = result.getConsumerCount();

However, if I use a clustered setup with multiple active HornetQ server that are connected to each other, each server will only return the consumers that are connected to itsself only but not to other servers.

How can I get the number of consumers that are also connected to other servers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文