1

我正在尝试使用 Bunny 从队列中读取消息。我在 RabbitMQ 服务器上只有读取权限,但似乎我正在使用的代码试图创建队列 - 尽管我可以看到队列已经存在queue_exists?()

Bunny 中必须有一个进程可以简单地从现有队列中读取消息?这是我正在使用的代码

require 'bunny'

class ExampleConsumer < Bunny::Consumer
  def cancelled?
    @cancelled
  end

  def handle_cancellation(_)
    @cancelled = true
  end
end

conn = Bunny.new("amqp://xxx:xxx@xxx", automatic_recovery: false)
conn.start

ch = conn.channel
q = ch.queue("a_queue")
consumer = ExampleConsumer.new(ch, q)

当我执行上述操作时,我收到:

/Users/jamessmith/.rvm/gems/ruby-1.9.3-p392/gems/bunny-1.7.1/lib/bunny/channel.rb:1915:in `raise_if_continuation_resulted_in_a_channel_error!': ACCESS_REFUSED - access to queue 'a_queue' in vhost '/' refused for user 'xxx' (Bunny::AccessRefused)
4

1 回答 1

0

在我见过的大多数 RMQ 配置中,消费者将有权创建他们需要的队列。

如果您必须设置您的权限,以便您无法从您的消费者创建队列,我建议您使用 Bunny gem 打开一个问题单。看起来不支持

于 2015-11-12T16:50:59.613 回答