Let's suppose, just for the sake of an example, I have a Django web application that is used for processing video and I want to use celery to offload some of those tasks. If I have a task in Celery, such as video editing, that is extremely processor intensive I would not want to run it on the same server that Django is running on. Is there a way to send a task you defined in your Django application to run remotely on another server?
I'm just now reading all the documentation about Celery and I'm not seeing this situation. The only thing that seems to fit for this situation is to run Celery somewhere else and make HTTP requests to it using the Celery HTTP Gateway.
For django-celery where do the tasks execute? Where you set your broker URL or on the machine that is running django?