如何设置NMS监听容器的预取限制

发布于 2024-12-13 02:35:07 字数 447 浏览 0 评论 0原文

除了连接 U​​RL 之外,如何在 spring config.xml 中设置预取限制。我找不到任何有关任何属性的文档,并且连接 URL 上的参数似乎不起作用。此外,我需要在消费者层面上做到这一点。下面是我的配置。

   <nms:listener-container 
    connection-factory="SingleConnectionFactory" 
    concurrency="${GraphManagerService.NMS.Consumers}"
    auto-startup="false">
    <nms:listener ref="MessageListenerAdapter" destination="${GraphManagerService.NMS.QueueName}" />
   </nms:listener-container>

Other than on the connection URL, how do I set the prefetch limit in spring config. I can't find any doc on any of the properties and the param on the Connection URL doesn't seem to work. Besides, I need to do this on the consumer level. Here is my config below.

   <nms:listener-container 
    connection-factory="SingleConnectionFactory" 
    concurrency="${GraphManagerService.NMS.Consumers}"
    auto-startup="false">
    <nms:listener ref="MessageListenerAdapter" destination="${GraphManagerService.NMS.QueueName}" />
   </nms:listener-container>

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

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

发布评论

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

评论(1

眼泪都笑了 2024-12-20 02:35:07

要在每个消费者的基础上执行此操作,您可以将该选项添加到目的地。

myQueue?consumer.prefetchSize=10

To do this on a per-consumer basis you add the option to the destination.

myQueue?consumer.prefetchSize=10

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