Skip to content Skip to sidebar Skip to footer

Celery Not Using All Concurrent Slots

I have a Celery cluster made up of machines with 8-core processors. Each machine has one worker that is set to a concurrency factor of 8 (-c8). I often see nodes with a lot of res

Solution 1:

Thanks to banana, I think I found the answer.

Some of my tasks were spawning subprocesses, which Celery counts in its concurrency.


Post a Comment for "Celery Not Using All Concurrent Slots"