我在我的Rails应用程序中使用Resque(和resque-scheduler)来运行定期作业。这对我来说很好,直到今天。我做了一些代码更改,我认为这些更改是无关的,但现在每个工作程序在输入perform方法之前都失败了(使用调试语句检查)。当我在rails控制台中运行它时,相同的worker方法可以正常工作。它只能通过开发localhost(Postgres DB)上的resque失败。
失败的工作人员的resque控制台中显示的错误是:
Exception
NoMethodError
Error
undefined method `write' for nil:NilClass
错误没有额外的堆栈跟踪。知道为什么会失败吗?
其他信息:
LIB /任务/ resque.rake
# Resque tasks
require 'resque/tasks'
require 'resque_scheduler/tasks'
namespace :resque do
task :setup do
require 'resque'
require 'resque_scheduler'
require 'resque/scheduler'
# you probably already have this somewhere
Resque.redis = 'localhost:6379'
# If you want to be able to dynamically change the schedule,
# uncomment this line. A dynamic schedule can be updated via the
# Resque::Scheduler.set_schedule (and remove_schedule) methods.
# When dynamic is set to true, the scheduler process looks for
# schedule changes and applies them on the fly.
# Note: This feature is only available in >=2.0.0.
#Resque::Scheduler.dynamic = true
# The schedule doesn't need to be stored in a YAML, it just needs to
# be a hash. YAML is usually the easiest.
Resque.schedule = YAML.load_file("#{Rails.root}/config/resque_schedule.yml")
# If your schedule already has +queue+ set for each job, you don't
# need to require your jobs. This can be an advantage since it's
# less code that resque-scheduler needs to know about. But in a small
# project, it's usually easier to just include you job classes here.
# So, something like this:
# require 'jobs'
end
end
task "resque:setup" => :environment do
#ENV['QUEUE'] = '*'
Resque.before_fork = Proc.new { ActiveRecord::Base.establish_connection }
end
配置/ resque.yml
development: localhost:6379
test: localhost:6379:1
staging: redis1.se.github.com:6379
fi: localhost:6379
production: redis1.ae.github.com:6379
初始化/ resque.rb
rails_root = Rails.root || File.dirname(__FILE__) + '/../..'
rails_env = Rails.env || 'development'
resque_config = YAML.load_file(rails_root.to_s + '/config/resque.yml')
Resque.redis = resque_config[rails_env]
# This will make the tabs show up.
require 'resque_scheduler'
require 'resque_scheduler/server'
配置/ resque_schedule.yml
populate_game_data:
# you can use rufus-scheduler "every" syntax in place of cron if you prefer
every: 1m
# By default the job name (hash key) will be taken as worker class name.
# If you want to have a different job name and class name, provide the 'class' option
class: PopulateDataWorker
queue: high
args:
description: "This job populates the game and data"
请注意,上述文件在工作和非工作状态之间没有变化。
答案 0 :(得分:4)
今天早上我们遇到了同样的问题,我们把它归结为New Relic的宝石更新。 newrelic_rpm的3.5.6.46版本在rubygems上被淘汰,但它以某种方式通过bundle update安装。
他们仍处于3.5.6的测试阶段,并且与Resque有一些问题。见https://github.com/newrelic/rpm/commit/e81889c2bce97574ec682dafee12015e13ccb2e1
修复是添加'〜> 3.5.5.38'在我们的gemfile中为newrelic_rpm