队列有消费者在监听,并且预取了消息(在 rabbitmq 管理页面能看到,有 1 条消息等待 ack ),但是消息没有进入我写的消费者代码中,等超过默认时间( 30 )分钟,就报下面异常
Channel shutdown: channel error; protocol method: #method<channel.close>(reply-code=406, reply-text=PRECONDITION_FAILED - delivery acknowledgement on channel 1 timed out. Timeout value used: 1800000 ms. This timeout value can be configured, see consumers doc guide to learn more, class-id=0, method-id=0)
1
vanpeisi7 OP 我使用的 Spring Cloud Stream 和 RabbitMq 的镜像队列
|
2
Simonxxl 360 天前 via Android
超时了
|
3
guochenglong 359 天前
消费超时了,30 分钟消息没有进行 ack
|
4
WashFreshFresh 359 天前
listener 没有监听到消息?配错了吧,是不是别的消费者给监听到了但是没 ack
|