我正在读取一些传感器值,并且我想安排重复作业,以便每隔 :00、:10、:15、:20、:25、:30、:35 等重复一次。
我在 Rails 5 中使用 clockwork/delayed_job/activeJob 和工头,我能够检索值并将其存储到数据库中。
我无法做的是按时完成每个任务/作业,这意味着它们似乎排成一列,然后立即执行。我可以看到它们可能一次运行 5 次,而整个任务可能需要一些毫秒。
时钟.rb
require 'clockwork'
require File.expand_path('../boot', __FILE__)
require File.expand_path('../environment', __FILE__)
module Clockwork
handler do |job, time|
puts "Running #{job}, at #{time}"
end
every(5.minutes, 'SensorJob') { Delayed::Job.enqueue SensorJob.new, queue: :default }
end
sensor_job.rb
class SensorJob < ActiveJob::Base
queue_as :default
def perform
@temperature = Random.new.rand(20..30)
@humidity = Random.new.rand(30..70)
SensorReading.create(temperature: @temperature, humidity: @humidity)
end
end
我错过了什么?