为了保持和线下一致,线上生产环境采用了相同的版本,运行几个月后,出现问题。现象如下:
在几天时间内,有三个队列出现没有消费者的问题。查看rabbitmq的日志。
operation queue.declare caused a channel exception not_found: failed to perform operation on queue '出现问题的队列' in vhost 'http://www.likecs.com/' due to timeout
根据https://bugzilla.redhat.com/show_bug.cgi?id=1418668,这个bug在3.6.3已经修复,单我们还是有问题。
此时,通过管理页面,无法删除队列,报错类似,是queue.delete超时。根据https://github.com/rabbitmq/rabbitmq-server/issues/1333的反馈
通过命令
rabbitmqctl eval 'rabbit_amqqueue:internal_delete({resource,<<"所在vhost">>,queue,<<"出问题的队列">>}).'