How can a Celery task have access to the Django database-abstraction API? Does this need to be coded from scratch using one of the strategies for stand-alone Django ORM usage, or is there a more streamlined, built-in way or common practice?

It seems that nobody is asking this question. However, to me, it's fundamental.

This example implies that it's no big deal, but can someone explain how the session management and ORM scoping works between Celery and Django?

link|improve this question

69% accept rate
feedback

1 Answer

You probably want to have a look at django-celery.

When doing work as a celery task, you want to pass all of the details to celery, for example to send an email, you’d pass in values for “from”, “to”, “subject”, and “body”.

If you then wanted to notify the user of the action being completed, you’d probably want to have a look at something like the messages framework in Django.

I hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.