我正在尝试在heroku上运行消息队列.为此我使用RabbitMQ Bigwig插件.
我正在使用bunny gem发布消息并尝试使用sneakers gem接收消息.整个设置在本地机器上运行顺畅.
我按照以下步骤设置队列
我在服务器上运行这个rake来设置队列:
namespace :rabbitmq do
desc 'Setup routing'
task :setup_test_commands_queue do
require 'bunny'
conn = Bunny.new(ENV['SYNC_AMQP'], read_timeout: 10, heartbeat: 10)
conn.start
ch = conn.create_channel
# get or create exchange
x = ch.direct('testsync.pcc', :durable => true)
# get or create queue (note the durable setting)
queue = ch.queue('test.commands', :durable => true, :ack => true, :routing_key => 'test_cmd')
# bind queue to exchange
queue.bind(x, :routing_key => 'test_cmd')
conn.close
end
end
我能够在提到绑定的rabbitmq管理插件中看到这个队列.
class TestPublisher
def self.publish(test)
x = channel.direct("testsync.pcc", :durable => true)
puts "publishing this = #{Test}"
x.publish(Test, :persistent => true, :routing_key => 'pcc_cmd')
end
def self.channel
@channel ||= connection.create_channel
end
def self.connection
@conn = Bunny.new(ENV['RABBITMQ_BIGWIG_TX_URL'], read_timeout: 10, heartbeat: 10) # getting configuration from rabbitmq.yml
@conn.start
end
end
我正在调用TestPublisher.publish()来发布消息.
我有这样的运动鞋工人:
require 'test_sync'
class TestsWorker
include Sneakers::Worker
from_queue "test.commands", env: nil
def work(raw_event)
puts "^"*100
puts raw_event
# o = CaseNote.create!(content: raw_event, creator_id: 1)
# puts "#########{o}"
test = Oj.load raw_event
test.execute
# event_params = JSON.parse(raw_event)
# SomeWiseService.build.call(event_params)
ack!
end
end
我的Procfile
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
worker: bundle exec rake jobs:work
sneaker: WORKERS=TestsWorker bundle exec rake sneakers:run
我的Rakefile
require File.expand_path('../config/application', __FILE__)
require 'rake/dsl_definition'
require 'rake'
require 'sneakers/tasks'
Test::Application.load_tasks
我的运动鞋配置
require 'sneakers'
Sneakers.configure amqp: ENV['RABBITMQ_BIGWIG_RX_URL'],
log: "log/sneakers.log",
threads: 1,
workers: 1
puts "configuring sneaker"
我确信该消息已发布.我能够在rabbitmq管理插件上获得消息.但运动鞋不起作用. sneakers.log中没有任何内容可以提供帮助.
heroku上的sneakers.log:
# Logfile created on 2016-04-05 14:40:59 +0530 by logger.rb/41212
最佳答案 很抱歉这个迟到的回复.我能够在heroku上工作.经过数小时的调试后,当我遇到这个错误时,我无法修复它.所以我重写了上面的所有代码,我没有检查我以前的代码有什么问题.
此代码和正确代码的唯一问题是队列绑定.
我在同一个交易所有两个队列.带路由密钥pcc_cmd的pcc.commands和带路由密钥test_cmd的test.commands.
我正在使用test_cmd但是按照TestPublisher中的以下行进行操作
x.publish(Test, :persistent => true, :routing_key => 'pcc_cmd')
我发布到不同的队列(pcc.commands).因此我无法在test.commands队列中收到消息.
在TestWorker中
from_queue "test.commands", env: nil
这表明仅从test.commands队列获取消息.
关于sneakers.log文件:
上面的设置无法给我登录sneakers.log文件.是的,这个设置适用于您的本地开发机器,但它不适用于heroku.现在调试这个问题的日子我从配置中省略了log属性.像这样:
require 'sneakers'
Sneakers.configure amqp: ENV['RABBITMQ_BIGWIG_RX_URL'],
# log: "log/sneakers.log",
threads: 1,
workers: 1
这样你就可以在heroku日志中获得运动鞋日志(甚至是心跳日志),这可以通过运行命令heroku logs -a app_name –tail来看到.