Rails: Can I run backgrounds jobs in a different server?
Is it possible to host the application in one server and queue jobs in another server? Possible examples: Two different EC2 instances, one with the main server and the second with the queueing service. Host the app in Heroku and use an EC2 instance with the queueing service Is that possible? Thanks Yes, definitely. We have delayed_job set up that way where I work. There are a couple of requirements for it to work: The servers have to have synced clocks. This is usually not a problem as long as the server timezones are all set to the same. The servers all have to access the same database. To do