设为首页 收藏本站
查看: 1311|回复: 0

[经验分享] python rabbitmq

[复制链接]

尚未签到

发表于 2017-7-2 12:19:29 | 显示全部楼层 |阅读模式
  RabbitMQ
  RabbitMQ是一个在AMQP基础上完整的,可复用的企业消息系统。他遵循Mozilla Public License开源协议。
  MQ全称为Message Queue, 消息队列(MQ)是一种应用程序对应用程序的通信方法。应用程序通过读写出入队列的消息(针对应用程序的数据)来通信,而无需专用连接来链接它们。消 息传递指的是程序之间通过在消息中发送数据进行通信,而不是通过直接调用彼此来通信,直接调用通常是用于诸如远程过程调用的技术。排队指的是应用程序通过 队列来通信。队列的使用除去了接收和发送应用程序同时执行的要求。
  RabbitMQ安装



安装配置epel源
# rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
安装erlang
# yum -y install erlang
安装RabbitMQ
# yum -y install rabbitmq-server




启动/停止 service rabbitmq-server start/stop




安装API pika
pip install pika
easy_install pika

  使用API操作RabbitMQ



import pika
# ######################### 生产者 #########################
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='MQ1')
channel.basic_publish(exchange='',routing_key='MQ1',body='Hello World!')
print(" [x] Sent 'Hello World!'")
connection.close()




import pika
# ########################## 消费者 ##########################
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='MQ1')
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
channel.basic_consume(callback,queue='MQ1',no_ack=True)
print('
  • Waiting for messages. To exit press CTRL+C')
    channel.start_consuming()

      1、ackonowlege 消息不不丢失
      no-ack = False,如果生产者遇到情况(its channel is closed, connection is closed, or TCP connection is lost)挂掉了,那么,RabbitMQ会重新将该任务添加到队列中。



    import pika
    # ########################## 消费者 ##########################
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.queue_declare(queue='MQ1')
    def callback(ch, method, properties, body):
    print(" [x] Received %r" % body)
    import time
    time.sleep(10)
    print('ok')
    ch.basic_ack(delivery_tag = method.delivery_tag)
    channel.basic_consume(callback,queue='MQ1',no_ack=False)
    print('
  • Waiting for messages. To exit press CTRL+C')
    channel.start_consuming()

      2. durable   消息不丢失
      生产者消息持久化



    import pika
    # ######################### 生产者 #########################
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    # 消息持久化
    channel.queue_declare(queue='MQ2', durable=True)
    channel.basic_publish(exchange='',routing_key='MQ2',body='Hello World!',
    properties=pika.BasicProperties(
    delivery_mode=2, # 消息持久化
    ))
    print(" [x] Sent 'Hello World!'")
    connection.close()




    import pika
    # ########################## 消费者 ##########################
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.queue_declare(queue='MQ2', durable=True)  # 消息持久化
    def callback(ch, method, properties, body):
    print(" [x] Received %r" % body)
    import time
    time.sleep(10)
    print('ok')
    ch.basic_ack(delivery_tag = method.delivery_tag)
    channel.basic_consume(callback,queue='MQ2',no_ack=False)
    print('
  • Waiting for messages. To exit press CTRL+C')
    channel.start_consuming()

      3、消息获取的顺序
      默认情况下,消息队列里的数据是按顺序被拿走的,例如消费者1去任务里获取奇数位置的消息队列,消费者2去任务里获取偶数位置消息队列。如果消息队列只管按顺序将消息发送到消费者身上不考虑消费者负载的话,一个配置不高的消费者堆积了一对消费不完的消息, 同事配置高的消费者却一直很轻松,为了解决该问题,在消费者端配置prefetch=1
      ,意思就是告诉生产者我这当前消息还没处理完的时候就不要给我发消息了。



    import pika
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.queue_declare(queue='MQ2',durable=True)  # 消息持久化
    def callback(ch, method, properties, body):
    print(" [x] Received %r" % body)
    import time
    time.sleep(10)
    print('ok')
    ch.basic_ack(delivery_tag = method.delivery_tag)
    channel.basic_qos(prefetch_count=1)
    channel.basic_consume(callback,
    queue='hello',
    no_ack=False)
    print('
  • Waiting for messages. To exit press CTRL+C')
    channel.start_consuming()

      4. 发布订阅
      发布订阅和简单的消息队列区别在于,发布订阅会将消息发送给所有的订阅者,而消息队列中的数据被消费一次便消失。所以,RabbitMQ实现发布和订阅时,会为每一个订阅者创建一个队列,而发布者发布消息时,实际上是先发送给exchange。
      exchange=fanout



    import pika,sys
    ##------------------------发布者-----------------
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.exchange_declare(exchange='logs',type='fanout')
    message = ' '.join(sys.argv[1:]) or "info: Hello World!"
    channel.basic_publish(exchange='logs',routing_key='',body=message)
    print(" [x] Sent %r" % message)
    connection.close()




    import pika
    ##------------------------订阅者-----------------
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.exchange_declare(exchange='logs',type='fanout')
    result = channel.queue_declare(exclusive=True)
    queue_name = result.method.queue    #获取随机队列名
    channel.queue_bind(exchange='logs',queue=queue_name)
    print('
  • Waiting for logs. To exit press CTRL+C')
    def callback(ch, method, properties, body):
    print(" [x] %r" % body)
    channel.basic_consume(callback,queue=queue_name,no_ack=True)
    channel.start_consuming()

      5、关键字发送
      exchange type = direct
      RabbitMQ还支持根据关键字发送,即:队列绑定关键字,发送者将数据根据关键字发送到消息exchange,exchange根据 关键字 判定应该将数据发送至指定队列。



    import pika
    # ######################### 生产者 #########################
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.exchange_declare(exchange='direct_logs',type='direct')
    message = 'Hello World!'
    channel.basic_publish(exchange='direct_logs',
    routing_key= 'mingyue',   #绑定的关键字
    body=message)
    print(" [x] Sent %r" % (message))
    connection.close()




    import pika
    # # ########################## 消费者 ##########################
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.exchange_declare(exchange='direct_logs',type='direct')
    result = channel.queue_declare(exclusive=True)
    queue_name = result.method.queue
    # 绑定两个不同的关键字
    channel.queue_bind(exchange='direct_logs',queue=queue_name,routing_key= 'shuoming')
    channel.queue_bind(exchange='direct_logs',queue=queue_name,routing_key= 'mingyue')
    print('
  • Waiting for logs. To exit press CTRL+C')
    def callback(ch, method, properties, body):
    print(" [x] %r:%r" % (method.routing_key, body))
    channel.basic_consume(callback,queue=queue_name,no_ack=True)
    channel.start_consuming()

      6、关键字匹配
      exchange type = topic
      在topic类型下,可以让队列绑定几个模糊的关键字,之后发送者将数据发送到exchange,exchange将传入”路由值“和 ”关键字“进行匹配,匹配成功,则将数据发送到指定队列。


    •   # 表示可以匹配 0 个 或 多个 单词

    •   *  表示只能匹配 一个 单词




    import pika
    # ######################### 生产者 #########################
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.exchange_declare(exchange='topic_logs',type='topic')

    message = 'Hello World!'
    channel.basic_publish(exchange='topic_logs',
    routing_key= 'www.baidu.com',   #匹配模糊关键字
    body=message)
    print(" [x] Sent %r" % (message))
    connection.close()




    import pika
    connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
    channel = connection.channel()
    channel.exchange_declare(exchange='topic_logs',type='topic')
    result = channel.queue_declare(exclusive=True)
    queue_name = result.method.queue
    # 绑定两个不同的关键字
    channel.queue_bind(exchange='topic_logs',queue=queue_name,routing_key= 'www.*')
    print('
  • Waiting for logs. To exit press CTRL+C')
    def callback(ch, method, properties, body):
    print(" [x] %r:%r" % (method.routing_key, body))
    channel.basic_consume(callback,queue=queue_name,no_ack=True)
    channel.start_consuming()

  • 运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
    2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
    3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
    4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
    5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
    6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
    7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
    8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

    所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-390322-1-1.html 上篇帖子: Spring集成rabbitmq 下篇帖子: python学习-day11
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    扫码加入运维网微信交流群X

    扫码加入运维网微信交流群

    扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

    扫描微信二维码查看详情

    客服E-mail:kefu@iyunv.com 客服QQ:1061981298


    QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


    提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


    本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



    合作伙伴: 青云cloud

    快速回复 返回顶部 返回列表