python - How to add workers to django celery scheduler -
python - How to add workers to django celery scheduler -
i have celery running in django , several periodic tasks added. tasks (task-a) take long time run, maybe 30 minutes , 1 of other tasks (task-b), must run each 5 minutes.
the problem have task-b, must run each 5 minutes, doesn't start until task-a has finished.
i can't find misconfigured.
is there way tell celery scheduler allow several tasks in parallel?
thanks
further investigation, concluded problem have 1 worker django scheduler, not find how add together more workers django celery scheduler. there way add together more workers?
python celery django-celery celerybeat djcelery
Comments
Post a Comment