Reputation: 51241
Can I have multiple machines to execute the tasks and return messages that are distributed by django? I looked into celery/rabbitmq, I'm not sure if I can setup celery workers on remote computers. Can anyone guide me through here? If this is not possible or very hard, any alternative solution for the problem?
Upvotes: 2
Views: 1346
Reputation: 38382
You can do this by installing your Django project on to the remote computer, and then ensuring that it is configured to use the correct broker, database server, and media directory (assuming your tasks need access to that).
Upvotes: 1