有没有办法优雅地停止 ListenerContainer 及其关联的 Consumers.
Is there a way to gracefully stop a ListenerContainer, and its associated Consumers.
我正在努力实现的目标.
ListenerContainer.我可以使用 consumer.stop() 停止 ListenerContainers,但活动的长时间运行的消费者不会成功完成,处理的消息也不会acked 并因此将在 ListenerContainer 恢复后再次处理.
I'm able to stop the ListenerContainers using consumer.stop(), but active long running consumers won't complete successfully, and processed messages won't be acked and will therefore be processed again, once the ListenerContainer has been resumed.
输出
Waiting for workers to finish.
Workers not finished.
Closing channel for unresponsive consumer: Consumer@6d229b1c
消息已处理,但未确认.
The message was processed, but not acked.
我或许可以使用 setForceCloseChannel(false) 实现正常关闭,但是否可以验证取消的消费者是否已完成?SimpleMessageListenerContainer.doShutDown() 有一个本地范围的列表cancelledConsumers".
I might be able to achieve a graceful shutdown using setForceCloseChannel(false), but is it possible to verify if the cancelled consumers has finished? SimpleMessageListenerContainer.doShutDown() has a local scoped List "canceledConsumers".
增加关机超时时间.
请参阅消息侦听器容器配置.
关机超时
当容器关闭时(例如,如果其封闭的 ApplicationContext 已关闭),它会等待处理中的消息,直至达到此限制.默认为五秒.
When a container shuts down (for example, if its enclosing ApplicationContext is closed), it waits for in-flight messages to be processed up to this limit. Defaults to five seconds.
/**
* The time to wait for workers in milliseconds after the container is stopped. If any
* workers are active when the shutdown signal comes they will be allowed to finish
* processing as long as they can finish within this timeout. Defaults
* to 5 seconds.
* @param shutdownTimeout the shutdown timeout to set
*/
public void setShutdownTimeout(long shutdownTimeout) {
这篇关于如何优雅地停止使用@RabbitListener 消费消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
解析 ISO 8601 字符串本地日期时间,就像在 UTC 中Parsing an ISO 8601 string local date-time as if in UTC(解析 ISO 8601 字符串本地日期时间,就像在 UTC 中一样)
如何将公历字符串转换为公历?How to convert Gregorian string to Gregorian Calendar?(如何将公历字符串转换为公历?)
Java:GregorianCalendar 的最大值和最小值是什么/在哪Java: What/where are the maximum and minimum values of a GregorianCalendar?(Java:GregorianCalendar 的最大值和最小值是什么/在哪里?)
1582 年 10 月 15 日之前日期的日历到日期转换.公历Calendar to Date conversion for dates before 15 Oct 1582. Gregorian to Julian calendar switch(1582 年 10 月 15 日之前日期的日历到日期转换
java日历setFirstDayOfWeek不起作用java Calendar setFirstDayOfWeek not working(java日历setFirstDayOfWeek不起作用)
Java:获取当前星期几的值Java: getting current Day of the Week value(Java:获取当前星期几的值)