resque-batched-job
resque-batched-job copied to clipboard
Resque plugin that understands individual jobs can belong to something bigger than themselves
How does one use resque-batched-job with activejob? My `self.after_batch_finished` hook never gets invoked. ``` require 'resque/batched_job' class MyJob < ActiveJob::Base extend Resque::Plugins::BatchedJob def perform(bid, args) # Perform job. end def...
I was just wondering if there were any plans to support the latest Resque version. I'm using 2.0.0.pre.1 and I ran into an error that I fixed with a small...
Ability to limit one worker for a batch? Obviously I haven't given this much thought. **Note**: This might go hand in hand with issue #14.
Manage batch statistics like success/failure counts and any other meta data.
Write a failure backend that handles batched job duties.