I am scheduling a job to run in say, 10 minutes. How to properly cancel this particular job without using any kind of dirty extra fields in model and so on. Is there any call to remove particular job, or jobs related to specific model, instance, etc?
|
disclaimer: I am not an expert user of delayed_job... "Is there any call to remove particular job, or jobs related to specific model, instance, etc?" Delayed::Job is just an ActiveRecord object so you can find and destroy any of those records. Depending on your use case this could be handled different ways. If someone is going to manually destroy them this could be handled through an admin interface in your web app.
if you need some out of process task deleting jobs by 'job type' you could loop through each one and delete it if it matches your job; try this in script/console
so given the above if you wanted to delete all jobs of type MyJob
this may or may not help for your situation? in many cases you might want to delete a MyJob but only where the :some_value attribute was 'abc' and not 'xyz'. In this case you might need to implement a 'display_name' on your MyJob object. job.name will use this if it exists
this way you could be more selective about which records to delete? hopefully this gives you enough information on possible ways to handle it? |
|||||||||
|