“什么是最好的方式”的答案很大程度上取决于您对队列的使用模式以及“最好”的含义。由于我还不能对问题发表评论,因此我将尝试提出一些可能的解决方案。
在每个示例中,我将假设 exchange 已经声明。
线程
您可以使用 pika 在单个进程中使用来自不同主机上的两个队列的消息。
你是对的 - 因为its own FAQ states,pika 不是线程安全的,但它可以通过为每个线程创建到 RabbitMQ 主机的连接以多线程方式使用。使用threading 模块使这个示例在线程中运行如下所示:
import pika
import threading
class ConsumerThread(threading.Thread):
def __init__(self, host, *args, **kwargs):
super(ConsumerThread, self).__init__(*args, **kwargs)
self._host = host
# Not necessarily a method.
def callback_func(self, channel, method, properties, body):
print("{} received '{}'".format(self.name, body))
def run(self):
credentials = pika.PlainCredentials("guest", "guest")
connection = pika.BlockingConnection(
pika.ConnectionParameters(host=self._host,
credentials=credentials))
channel = connection.channel()
result = channel.queue_declare(exclusive=True)
channel.queue_bind(result.method.queue,
exchange="my-exchange",
routing_key="*.*.*.*.*")
channel.basic_consume(self.callback_func,
result.method.queue,
no_ack=True)
channel.start_consuming()
if __name__ == "__main__":
threads = [ConsumerThread("host1"), ConsumerThread("host2")]
for thread in threads:
thread.start()
我已将callback_func 声明为一种纯粹用于在打印消息正文时使用ConsumerThread.name 的方法。它也可能是ConsumerThread 类之外的函数。
进程
或者,您总是可以只运行一个带有消费者代码的进程,每个队列要消费事件。
import pika
import sys
def callback_func(channel, method, properties, body):
print(body)
if __name__ == "__main__":
credentials = pika.PlainCredentials("guest", "guest")
connection = pika.BlockingConnection(
pika.ConnectionParameters(host=sys.argv[1],
credentials=credentials))
channel = connection.channel()
result = channel.queue_declare(exclusive=True)
channel.queue_bind(result.method.queue,
exchange="my-exchange",
routing_key="*.*.*.*.*")
channel.basic_consume(callback_func, result.method.queue, no_ack=True)
channel.start_consuming()
然后运行:
$ python single_consume.py host1
$ python single_consume.py host2 # e.g. on another console
如果您对来自队列的消息所做的工作是CPU-heavy,并且只要您的 CPU 中的核心数量 >= 消费者数量,通常最好使用这种方法 - 除非您的队列大部分时间都是空的时间和消费者不会使用此 CPU 时间*。
异步
另一种选择是涉及一些异步框架(例如Twisted)并在单线程中运行整个事情。
您不能再在异步代码中使用BlockingConnection;幸运的是,pika 有 Twisted 的适配器:
from pika.adapters.twisted_connection import TwistedProtocolConnection
from pika.connection import ConnectionParameters
from twisted.internet import protocol, reactor, task
from twisted.python import log
class Consumer(object):
def on_connected(self, connection):
d = connection.channel()
d.addCallback(self.got_channel)
d.addCallback(self.queue_declared)
d.addCallback(self.queue_bound)
d.addCallback(self.handle_deliveries)
d.addErrback(log.err)
def got_channel(self, channel):
self.channel = channel
return self.channel.queue_declare(exclusive=True)
def queue_declared(self, queue):
self._queue_name = queue.method.queue
self.channel.queue_bind(queue=self._queue_name,
exchange="my-exchange",
routing_key="*.*.*.*.*")
def queue_bound(self, ignored):
return self.channel.basic_consume(queue=self._queue_name)
def handle_deliveries(self, queue_and_consumer_tag):
queue, consumer_tag = queue_and_consumer_tag
self.looping_call = task.LoopingCall(self.consume_from_queue, queue)
return self.looping_call.start(0)
def consume_from_queue(self, queue):
d = queue.get()
return d.addCallback(lambda result: self.handle_payload(*result))
def handle_payload(self, channel, method, properties, body):
print(body)
if __name__ == "__main__":
consumer1 = Consumer()
consumer2 = Consumer()
parameters = ConnectionParameters()
cc = protocol.ClientCreator(reactor,
TwistedProtocolConnection,
parameters)
d1 = cc.connectTCP("host1", 5672)
d1.addCallback(lambda protocol: protocol.ready)
d1.addCallback(consumer1.on_connected)
d1.addErrback(log.err)
d2 = cc.connectTCP("host2", 5672)
d2.addCallback(lambda protocol: protocol.ready)
d2.addCallback(consumer2.on_connected)
d2.addErrback(log.err)
reactor.run()
这种方法会更好,您将使用的队列越多,消费者执行的工作对 CPU 的限制就越少*。
Python 3
由于您提到了pika,我将自己限制为基于 Python 2.x 的解决方案,因为尚未移植 pika。
但如果您想迁移到 >=3.3,一种可能的选择是将 asyncio 与 AMQP 协议之一(您与 RabbitMQ 对话的协议)一起使用,例如asynqp 或 aioamqp。
* - 请注意,这些都是非常浅显的技巧 - 在大多数情况下,选择并不那么明显;什么对你最好取决于队列“饱和度”(消息/时间),你在收到这些消息后做了什么工作,你在什么环境中运行你的消费者等等;除了对所有实现进行基准测试之外,没有其他方法可以确定