Supervisor: how to avoid "FATAL Exited too quickly" ?
We have supervisor for handling queues, as most of us I think.
We have a TONS of small jobs, very very small, and about 2 M/days. In some edge cases, every single jobs ends near immediately because there is nothing to do.
Supervisor in this case pull down our queues because exited too quickly.,
Is there an option to tell supervisor to do not worry about this?
And... NO !!! We canno use tries = 0 because this causes ingestion in the server itself !
If all of my jobs are starting and finishing in a single millisecond, for example, then supervisor stop my worker with the fatal error. All jobs exited immediately but with 0 as exit code, because all is right
@Sinnbeck Of course, it do not has any erros. Like I said before, in some circumstances, all of my jobs terminates immediately, by code, and without errors. In this case, queue ends itself. but 'too fast' for supervisor, for what I understand