Rails 3 中的 Rufus 调度程序实现
我有一个在生产中使用 apache +乘客运行的应用程序。目前,我在初始化程序中初始化 rufus 调度程序,并注册从该初始化程序中的数据库读取的作业。 apache/passenger 的工作方式是它创建应用程序的多个进程/实例,这会导致调度程序多次初始化并调度重复的作业。
使调度程序成为单例对象的正确实现是什么?
I have an app running with apache + passenger in production. Currently I initialize the rufus scheduler in a initializer and register jobs reading from a db in that initializer. Way apache/passenger works is that it creates multiple process/instance of the app which causes the scheduler to get initialized multiple times and will schedule duplicate jobs.
What is the correct of implementing this so that the scheduler is a singleton object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能希望将 Rufus Scheduler 实现为应用程序之外的单独工作进程。
我不会将其作为初始化程序,而是实现一个启动它的 Rake 任务。
然后只需运行
rake Scheduler
即可在后台启动它。奖励:由于您的应用程序现在需要并排 2 个进程,因此请使用 Foreman 来管理应用程序的多个进程。您可以通过创建一个名为
Procfile
的文件来完成此操作:然后使用 Foreman 启动您的应用程序:(请务必先
gem install foreman
)这将同时调用两个进程。
You probably want to implement Rufus Scheduler as a separate worker process outside your application.
Instead of putting it as an initializer, I would implement a Rake task that starts it.
Then just run
rake scheduler
to start it in the background.Bonus: Since your app now needs 2 processes side by side, use Foreman to manage the multiple processes of your application. You can do this by creating a file called
Procfile
:Then start your app with Foreman: (be sure to
gem install foreman
first)This will invoke both processes simultaneously.