如何迭代大型 ActiveMQ 队列?

发布于 2024-11-01 06:48:31 字数 145 浏览 0 评论 0原文

我有一个包含近 250,000 条消息的队列。我想迭代这些消息而不删除它们。我为此使用了QueueBrowser,但它仅使前 200 个元素可用。 QueueBrowser 的 Javadoc 解释说它“查看”队列中的消息。

I have a queue containing almost 250,000 messages. I'd like to iterate through the messages without removing them. I've used QueueBrowser for this, but it makes only the first 200 elements available. QueueBrowser's Javadoc explains that it "peeks" at messages from the queue.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2024-11-08 06:48:31

问题在于您的经纪商所采用的目的地政策。默认情况下,代理只会为浏览器分页 200 条消息,以避免耗尽所有可用内存并避免影响整体性能。您可以通过 activemq.xml 中自己的 DestinationPolicy 增加此数字,请参阅此处。

The issue lies in the Destination Policy in play for your broker. By default the broker will only page in 200 message for a browser to avoid using up all available memory and avoid impacting overall performance. You can increase this number via your own DestinationPolicy in activemq.xml, see the documentation page here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文