resque-retry provides retry, delay and exponential backoff support for resque jobs.
Questions tagged [resque-retry]
19 questions
0
votes
1 answer
How to solve Python Web Scraping Error 10053
I'm having a Certain Problem in Python Web Scraping . The background is that I want to scrape all Food recipes on http://www.bbc.co.uk/food/recipes/ ! Now, Below is My Code
def…

Sibghat Khan
- 147
- 1
- 9
0
votes
1 answer
Resque poping instead of failing
I have a simple code for ruby- resque.
But due to some code issues, some jobs fail.
The problem is that they do not appear in failed jobs, they just disappear (once job is taken from the queue, it's poped, so it's removed).
How can I make resque to…

meso_2600
- 1,940
- 5
- 25
- 50
0
votes
1 answer
How to Requeue jobs to Resque?
I am new to Resque and I have been using it in production for the past 2 months, I now have a problem where I want my jobs to be re-queued in the queue if there is an exception. My jobs make about 50 external HTTP calls and some of the calls fail…

user1781472
- 497
- 1
- 7
- 16
0
votes
2 answers
Resque retry retries without delay
This is the code that I have
class ExampleTask
extend Resque::Plugins::ExponentialBackoff
@backoff_strategy = [0, 20, 3600]
@queue = :example_tasks
def self.perform
raise
end
end
I am running into a problem where,…

denniss
- 17,229
- 26
- 92
- 141