1👍
✅
Yeah, this is a common pattern. Most people use celery as the asynchronous task queue. You could just use subprocess
I suppose too.
In terms of tracking results of the job, that’s up to you. Celery certainly makes it easier to manage and track tasks as they’re processed, but almost all systems need some type of datastore to capture the results from the operation.
Source:stackexchange.com