I have three jobs in my queue;
- A
- B
- C
Retry count for one of them is set to 100.
When all my jobs are failing, Laravel runs the jobs as following scheme;
- A 1
- B 1
- C 1
and then;
- A 2
- B 2
- C 2
I want to change this behavior as the following scheme;
- A 100 (to failed table)
- B 1
- C 0
So I want the previous jobs to be blocking tikk they reach their retry counts and then continue to the next job.
How can I achieve this with Laravel’s Job system?
( I can’t chain the jobs on my software layer with chain method. I would like to achieve this by configuration )