-
Notifications
You must be signed in to change notification settings - Fork 0
/
consumer_direct2.py
35 lines (26 loc) · 1.04 KB
/
consumer_direct2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# _*_coding:utf-8_*_
import sys
import pika
credentials = pika.PlainCredentials('admin','password')
connection = pika.BlockingConnection(pika.ConnectionParameters(
'ip',5672,'/',credentials))
channel = connection.channel()
channel.exchange_declare(exchange='server',
exchange_type='direct') # 声明exchange的类型为模糊匹配。
result = channel.queue_declare(exclusive=True) # 创建随机一个队列当消费者退出的时候,该队列被删除
queue_name = result.method.queue # 创建一个随机队列名字。
binding_keys = ['failed']
for binding_key in binding_keys:
channel.queue_bind(exchange='server',
queue=queue_name,
routing_key=binding_key)
def callback(ch, method, properties, body):
with open('consumer.yaml','w') as f:
print('------------')
body = body.decode()
# f.write(body)
print('failed')
channel.basic_consume(callback,
queue=queue_name
)
channel.start_consuming()