celeryd
doesn't require a pidfile, but celerybeat
seems to. Is there any way to disable it? I'm using Upstart to manage processes so using a pidfile is redundant.
相关问题
- flask application with watchdog observer
- Error message 'No handlers could be found for
- Django filesystem/file-based cache failing to writ
- ImportError: No module named dateutil
- Django - Should external API requests always be ma
相关文章
- getting error Received unregistered task of type &
- Celery worker hang when running with twisted
- How can to run task in 5 minutes after finish prev
- Celery Consumer SQS Messages
- Where is the data provided by django-celery urls s
- Running same function for multiple files in parall
- Celery: stuck in infinitly repeating timeouts (Tim
- Can't start Celery worker on Windows 10 with “
The following seems to have worked for a few people so I'm submitting it as the answer:
--pidfile=
(an empty string as the pidfile arg) seems to stop one being created.So for me, I ammended the following in my development
docker-compose.yml
file:to:
I'm sure there is a more elegant way of cleaning up this file on startup or even shutdown?