如何迭代大型 ActiveMQ 队列?
我有一个包含近 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题在于您的经纪商所采用的目的地政策。默认情况下,代理只会为浏览器分页 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.