Celery. Decrease number of processes
Is there any way around to limit number of workers in celery ? I have small server and celery always creates 10 processes on 1 core processor. I want to limit this number to 3 processes. I tried setting concurrency to 1 and max_tasks_per_child to 1 in my settings.py file and ran 3 tasks at the same time. It just spawns 1 process as a User and the other 2 as celery. It should should just run 1 process and then wait for it to finish before running the other one. I am using django celery. EDIT { I was assigning concurrency by writing CELERYD_CONCURRENCY = 1 in settings.py file. But when I looked