gpt4 book ai didi

python - 为 Pika ioloop 异步设置超时 (RabbitMQ)

转载 作者:太空狗 更新时间:2023-10-30 02:49:27 24 4
gpt4 key购买 nike

我需要能够优雅地停止在 Pika ioloop 中工作的消费者(工作人员)。工作人员应在 60 秒后停止。当前处理的消息应该完成。

我试图在回调函数中放置一个 connection.close() 但这只会停止当前线程而不是整个 ioloop。它给出了一个可怕的错误输出。

请参阅我的代码中的第 16 行和以下内容:我使用了(关于 Pika ioloop 的基本示例 http://pika.github.com/connecting.html#cps-example:

    from pika.adapters import SelectConnection
channel = None
def on_connected(connection):
connection.channel(on_channel_open)

def on_channel_open(new_channel):
global channel
channel = new_channel
channel.queue_declare(queue="test", durable=True, exclusive=False, auto_delete=False, callback=on_queue_declared)

def on_queue_declared(frame):
channel.basic_consume(handle_delivery, queue='test')

def handle_delivery(channel, method, header, body):
print body

# timer stuff which did NOT work
global start_time, timeout, connection
time_diff = time.time()-start_time
if time_diff > timeout:
#raise KeyboardInterrupt
connection.close()

timeout = 60
start_time = time.time()

connection = SelectConnection(parameters, on_connected)

try:
connection.ioloop.start()
except KeyboardInterrupt:
connection.close()
connection.ioloop.start()

最佳答案

您可以在打开的连接上附加一个超时回调函数。这是您的示例的额外代码。

timeout = 60

def on_timeout():
global connection
connection.close()

connection.add_timeout(timeout, on_timeout)

关于python - 为 Pika ioloop 异步设置超时 (RabbitMQ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8180596/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com