gpt4 book ai didi

php - 使用 PhpAmqpLib 从 rabbitmq 消费者的回调中获取队列大小

转载 作者:行者123 更新时间:2023-12-04 15:46:06 26 4
gpt4 key购买 nike

我想从 worker 的回调中记录工作状态,并在左边的队列中包含一些消息。

到目前为止我找到的唯一解决方案是获取 queue_declare 的第二个成员结果数组,但是每次工作启动时都应该调用一次,并且我需要更新每条新消息的信息。

UPD :
基于IMSoP's answer的解决方案:

<?php
require_once __DIR__ . '/../vendor/autoload.php';
use PhpAmqpLib\Connection\AMQPStreamConnection;
$connection = new AMQPStreamConnection('localhost', 5672, 'guest', 'guest');
$channel = $connection->channel();
$channel->queue_declare('test1');
echo "[*] Waiting for messages. To exit press CTRL+C\n";
$callback = function ($msg) use ($channel) {
list (, $cn) = $channel->queue_declare('test1', true);
echo ' [x] Received ', $msg->body, " $cn left";
for ($i = 0; $i < $msg->body; ++$i) {
sleep(1);
echo '.';
}
echo "\n";
};
$channel->basic_qos(null, 1, null);
$channel->basic_consume('test1', '', false, true, false, false, $callback);
while (count($channel->callbacks)) {
$channel->wait();
}

出于某种原因总是给 0 作为消息计数。

最佳答案

queue_declare方法有一个名为“passive”的参数,可用于此目的:它仅通过名称检查队列是否存在,并忽略任何其他参数。

根据 the AMQP documentation :

If set, the server will reply with Declare-Ok if the queue already exists with the same name, and raise an error if not. The client can use this to check whether a queue exists without modifying the server state. When set, all other method fields except name and no-wait are ignored. A declare with both passive and no-wait has no effect. Arguments are compared for semantic equivalence.



请注意 Declare-Ok不仅仅是身份,而是 the full response structure的名字, 带字段 queue , message-count , 和 consumer-count .

在 PHP-AMQPLib 中,您可以使用它来记录一组队列的状态,如下所示:

foreach ( $this->registeredQueues as $queueName ) {
// The second parameter to queue_declare is $passive
// When set to true, everything else is ignored, so need not be passed
list($queueName, $messageCount, $consumerCount)
= $this->rabbitChannel->queue_declare($queueName, true);

$this->logger->info(
"Queue $queueName has $messageCount messages and $consumerCount active consumers."
);
}

关于php - 使用 PhpAmqpLib 从 rabbitmq 消费者的回调中获取队列大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55685418/

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