I want to develop an application which uses Django as Fronted and Celery to do background stuff. Now, sometimes Celery workers on different machines need database access to my django frontend machine
The Celery documentation suggests that it\'s a bad idea to have tasks wait on the results of other tasks… But the suggested solution (see “good” heading) leaves a something to be desired. Specifica
I\'m using celery with django and am trying to get a Task, like the one below: class开发者_JAVA百科 task1 (Task)
In development, it\'s a bit of a hassle to run the celeryd as wel开发者_Go百科l as the Django development server. Is it possible to, for example, ask celery to run tasks synchronously during developme
I just installed and configured Celery with RabbitMQ for a Django project and I was having an issue running tasks when I imported them like so:
I am using celery for distributed task processing. I wa开发者_C百科nted to deploy my work on a web-host, just to show the working of my project.
I\'m writing some software which will manage a few hundred small systems in “the field” over an intermittent 3G (or similar) connection.
I\'ve recently updated to celery 2.0 and I\'m trying to use the new (to me) decorators for periodic tasks:
I`ve followed the guidelines in http://celeryq.org/docs/django-celery/getting-started/first-steps-with-django.html and created a view that calls my test method in tasks.py:
I\'m trying to use the AbortableTask feature of Celery but the documentation example doesn\'t seem to be working for me.The e开发者_JS百科xample given is: