user469652
user469652

Reputation: 51241

Celery, rabbitmq: How to install remote worker?

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

Answers (1)

bradley.ayers
bradley.ayers

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

Related Questions