gpt4 book ai didi

ruby-on-rails - Resque,Resque 服务器,在 RedisToGo 上与 Heroku

转载 作者:IT王子 更新时间:2023-10-29 05:56:46 24 4
gpt4 key购买 nike

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

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 的东西

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

最佳答案

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

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

unicornresque 一起使用时,每次都必须定义 resque redis 连接 unicorn fork 。这是相关文件。

config/initializers/redis.rb

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

config/initializers/resque.rb

Resque.redis = REDIS_WORKER

config/unicorn.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

查看此 gist对于完整的 unicorn.rb

关于ruby-on-rails - Resque,Resque 服务器,在 RedisToGo 上与 Heroku,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12256476/

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