8

我一直在尝试让 Resque(使用 Resque 服务器)和 RedisToGo 在 heroku(雪松)上工作一段时间,但我一直遇到这个错误:

Redis::CannotConnectError (Error connecting to Redis on 127.0.0.1:6379 (ECONNREFUSED)):

它在本地工作,我可以在 Heroku 的控制台中为我的应用程序访问 redis。

我的 Procfile 有:

web: bundle exec thin start -p $PORT -e $RACK_ENV
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
resque: env TERM_CHILD=1 RESQUE_TERM_TIMEOUT=10 bundle exec rake resque:work

我的 Gemfile 有:

gem 'redis'

#Background queue
gem 'resque', '~> 1.22.0', :require => "resque/server"

lib/tasks/resque.rake:

require 'resque/tasks'

task "resque:setup" => :environment do
  ENV['QUEUE'] = '*'
end

desc "Alias for resque:work (To run workers on Heroku)"
task "jobs:work" => "resque:work"

路线.rb:

  mount Resque::Server.new, :at => "/resque" 

初始化程序:redis.rb:

uri = URI.parse(ENV["REDISTOGO_URL"])
REDIS = Redis.new(:host => uri.host, :port => uri.port, :password => uri.password)
Resque.redis = REDIS

resque.rb:

Dir["#{Rails.root}/app/workers/*.rb"].each { |file| require file }
Resque.after_fork = Proc.new { ActiveRecord::Base.establish_connection }

然后在我的 app/workers 目录中我有类似 myjob.rb 的东西

我觉得我在这里绕圈子,有什么想法吗?

4

1 回答 1

9

我认为你Procfile有一个错字。为什么你有两个web进程?我会坚持使用unicorn

web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb

当使用带有resque的unicorn时,您必须在每次unicorn分叉时定义resque redis连接。以下是相关文件。

配置/初始化程序/redis.rb

uri = URI.parse(ENV["REDIS_WORKER"])
REDIS_WORKER = Redis.new(host: uri.host, port: uri.port, password: uri.password)

配置/初始化程序/resque.rb

Resque.redis = REDIS_WORKER

配置/独角兽.rb

before_fork do |server, worker|
  if defined?(Resque)
    Resque.redis.quit
    Rails.logger.info("Disconnected from Redis")
  end
end

after_fork do |server, worker|
  if defined?(Resque)
    Resque.redis = REDIS_WORKER
    Rails.logger.info("Connected to Redis")
  end
end

有关完整的unicorn.rb ,请参阅此要点

于 2013-01-31T22:05:29.803 回答