0


RabbitMQ 生产者与消费者:实现同步消息处理的全面指南

在 RabbitMQ 中,生产者和消费者通常是异步工作的,但如果您希望实现一种机制,使得生产者在发送下一条消息之前等待消费者处理完当前消息(即实现同步),可以通过以下几种方式来实现。

方法 1: 使用确认机制

RabbitMQ 提供了消息确认机制,您可以在生产者中等待消费者确认消息已被处理完再发送下一条消息。以下是实现步骤:

  1. 启用消息确认:在消费者中处理完消息后,发送一个确认。
  2. 生产者等待确认:生产者在发送每条消息后等待消费者的确认。

示例代码

以下是一个简单的示例,演示如何使用确认机制来实现同步。

生产者代码
 import pika

# 连接到 RabbitMQ 服务器
 connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
 channel = connection.channel()

# 声明一个队列
 channel.queue_declare(queue='hello')

# 启用消息确认
 channel.confirm_select()

# 发送消息并等待确认
 for i in range(5):
     message = f'Message {i + 1}'
     channel.basic_publish(exchange='', routing_key='hello', body=message)
     print(f" [x] Sent '{message}'")
     
     # 等待确认
     if channel.is_open and channel.is_confirm_select:
         print(" [*] Waiting for acknowledgment...")
         channel.wait_for_confirm()
         print(" [*] Message acknowledged.")

# 关闭连接
 connection.close()
消费者代码
 import pika
 import time

# 连接到 RabbitMQ 服务器
 connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
 channel = connection.channel()

# 声明一个队列
 channel.queue_declare(queue='hello')

# 定义回调函数
 def callback(ch, method, properties, body):
     print(f" [x] Received {body.decode()}")
     time.sleep(1)  # 模拟处理时间
     ch.basic_ack(delivery_tag=method.delivery_tag)  # 发送确认
     print(f" [x] Acknowledged {body.decode()}")

# 告诉 RabbitMQ 使用 callback 来接收消息
 channel.basic_consume(queue='hello', on_message_callback=callback)

print(' [*] Waiting for messages. To exit press CTRL+C')
 channel.start_consuming()

运行示例

  1. 启动 RabbitMQ 服务器:确保 RabbitMQ 服务器正在运行。
  2. 运行消费者:首先运行消费者脚本,它会等待接收消息。
  3. 运行生产者:然后运行生产者脚本,它会发送多条消息,并在每条消息被确认后再发送下一条。

方法 2: 使用消息队列的特性

如果您希望在消费者处理完当前消息后再发送下一条消息,可以在消费者中添加一个信号机制,例如使用 queue.Queuethreading.Event 来通知生产者。

方法 3: 使用 RPC(远程过程调用)

RabbitMQ 还支持 RPC 模式,您可以将请求发送到队列,消费者处理请求并返回结果。生产者会在发送请求后等待消费者的响应。这种方式在某些场景下也可以实现同步。

示例代码(RPC)

生产者(客户端)代码

 import pika
 import uuid

class FibonacciRpcClient:
     def __init__(self):
         self.connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
         self.channel = self.connection.channel()

        result = self.channel.queue_declare(queue='', exclusive=True)
         self.callback_queue = result.method.queue

        self.channel.basic_consume(queue=self.callback_queue,
                                    on_message_callback=self.on_response,
                                    auto_ack=True)

    def on_response(self, ch, method, properties, body):
         self.response = body

    def call(self, n):
         self.response = None
         self.channel.basic_publish(exchange='',
                                     routing_key='rpc_queue',
                                     properties=pika.BasicProperties(
                                         reply_to=self.callback_queue,
                                     ),
                                     body=str(n))
         while self.response is None:
             self.connection.process_data_events()
         return int(self.response)

rpc_client = FibonacciRpcClient()

for i in range(5):
     print(f" [x] Requesting fib({i})")
     response = rpc_client.call(i)
     print(f" [.] Got {response}")

rpc_client.connection.close()

消费者(服务端)代码

 import pika

def fib(n):
     if n == 0:
         return 0
     elif n == 1:
         return 1
     else:
         return fib(n - 1) + fib(n - 2)

def on_request(ch, method, properties, body):
     n = int(body)
     print(f" [.] fib({n})")
     response = fib(n)

    ch.basic_publish(exchange='',
                      routing_key=properties.reply_to,
                      properties=pika.BasicProperties(
                          correlation_id=properties.correlation_id
                      ),
                      body=str(response))
     ch.basic_ack(delivery_tag=method.delivery_tag)

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
 channel = connection.channel()

channel.queue_declare(queue='rpc_queue')
 channel.basic_qos(prefetch_count=1)
 channel.basic_consume(queue='rpc_queue', on_message_callback=on_request)

print(" [x] Awaiting RPC requests")
 channel.start_consuming()

总结

  • 确认机制:通过在生产者中等待消费者确认消息处理完成,可以实现同步发送消息。
  • RPC 模式:使用 RabbitMQ 的 RPC 特性可以在发送请求后等待响应,实现同步处理。
  • 信号机制:通过使用其他 Python 线程或事件机制,您可以在消费者处理完消息后通知生产者发送下一条消息。

这些方法都可以根据您的具体需求进行调整和扩展。选择最适合您应用场景的方法。

标签: rabbitmq 分布式

本文转载自: https://blog.csdn.net/weixin_44532539/article/details/142827227
版权归原作者 南测先锋bug卫士 所有, 如有侵权,请联系我们删除。

“RabbitMQ 生产者与消费者:实现同步消息处理的全面指南”的评论:

还没有评论