Stop retrying jobs
When a processor throws an exception that is considered unrecoverable, you should use the UnrecoverableError
class. In this case, BullMQ will just move the job to the failed set without performing any retries, overriding any attempts
settings used when adding the job to the queue.
Fail job when manual rate-limit
When a job is rate limited using Worker.RateLimitError
and tried again, the attempts
check is ignored, as rate limiting is not considered a real error. However, if you want to manually check the attempts and avoid retrying the job, you can do the following:
Read more:
Last updated