首页 > 其他 > 详细

RabbitMQ报错(406, "PRECONDITION_FAILED - parameters for queue 'test_queue' in vhost '/test' not equivalent")

时间:2019-08-26 11:04:33      阅读:1215      评论:0      收藏:0      [点我收藏+]

 

1. 报错信息如下:

File "C:\projects\project_name\mq\rabbitclient.py", line 26, in __init__
self.channel.queue_declare(queue=conf.queue_name)
File "C:\env\project_name\lib\site-packages\pika\adapters\blocking_connection.py", line 2507, in queue_declare
self._flush_output(declare_ok_result.is_ready)
File "C:\env\project_name\lib\site-packages\pika\adapters\blocking_connection.py", line 1340, in _flush_output
raise self._closing_reason # pylint: disable=E0702

pika.exceptions.ChannelClosedByBroker: (406, "PRECONDITION_FAILED - parameters for queue ‘test_queue‘ in vhost ‘/test‘ not equivalent")

2. 代码如下:

# -*- coding: utf-8 -*-

import json
import pika
import Config


class RabbitMQClient(object):
    """
    RabbitMQ Client
    """
    def __init__(self):
        conf = Config()
        credentials = pika.PlainCredentials(conf.rabbit_user, conf.rabbit_password)
        self.conn = pika.BlockingConnection(pika.ConnectionParameters(
            host=conf.rabbit_ip,
            port=conf.rabbit_port,
            virtual_host=conf.vhost,
            credentials=credentials
        ))

        self.channel = self.conn.channel()
        self.exchange = conf.exchange
        self.routing_key = conf.routing_key
        self.channel.exchange_declare(exchange=self.exchange, exchange_type=‘direct‘, durable=True)
        self.channel.queue_declare(queue=conf.queue_name)
        self.channel.queue_bind(
            queue=conf.queue_name,
            exchange=self.exchange,
            routing_key=self.routing_key
        )

    def send(self, msg):
        try:
            self.channel.basic_publish(
                exchange=self.exchange,
                routing_key=self.routing_key,
                body=json.dumps(msg),
                properties=pika.BasicProperties(
                    delivery_mode=2
                )
            )
        except Exception as e:
            raise e

    def close(self):
        self.conn.close()


if __name__ == ‘__main__‘:
        client = RabbitMQClient()
        client.send(exec_info)
        client.close()

3. 定位问题

我们在声明exchange的时候加了如下参数:durable=True,代表持久化;
发布信息的时候加了如下参数:delivery_mode=2,代表持久化消息;
我们再看声明queue的时候如何?
在rabbitmq中,想要重启后不丢失消息,要加为信息加delivery_mode=2参数,只为消息加持久化限制,MQ重启之后,exchange和queue全部丢失,也是不行的,所以也要为exchange和queue做持久化,都是由durable=True控制。

所以,修改上述代码第26行如下:
self.channel.queue_declare(queue=conf.queue_name, durable=True)
再次测试便不报错了。

RabbitMQ报错(406, "PRECONDITION_FAILED - parameters for queue 'test_queue' in vhost '/test' not equivalent")

原文:https://www.cnblogs.com/emptygirl/p/11411083.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!