0

We're migrating our application www.monaqasat.com from a single server to a distributed infrastructure and we're debating where to run delayed_job from. The two obvious options are:

  • From each app instance?
  • From a single (or redundant) utility server?

Any recommendations or pros/cons?

e-sushi
  • 13,786
  • 10
  • 38
  • 57
khelal
  • 479
  • 4
  • 14

1 Answers1

0

I would prefer to use a single utility server unless it starts to get overwhelming for a single server.

I would also look at Gearman- http://gearman.org/.

If you need some serious messaging then RabbitMq http://www.rabbitmq.com/ is a good choice.

jeff musk
  • 1,032
  • 1
  • 10
  • 31