I want to have a celery worker and celery beat on the same process (dyno), however I want to limit the number of messages sent to RabbitMQ broker. Before implementing beat I have been using --without-heartbeat
and it has been fine, but I wonder if this will still work when I add --beat
to my procfile.
WORKER: celery worker --app=cworker.celery --autoscale=6,2 --beat --loglevel=info --without-mingle --without-gossip --without-heartbeat
Am I completely misunderstanding two separate elements?