在多个节点上运行 rufus 调度程序有问题吗?

发布于 2024-12-03 15:17:04 字数 164 浏览 0 评论 0原文

在 Rails 3 应用程序中运行 rufus-scheduler 没有任何问题。

但由于我的应用程序在节点集群中运行,app1.myapp.com - app2.myapp.com, rufus-scheduler 正在运行作业应用程序(N)次。

如何让它只在一台服务器上运行?

Running rufus-scheduler in a Rails 3 app without any problem.

But since my app is running in cluster of nodes, app1.myapp.com - app2.myapp.com,
the rufus-scheduler is running the job app(N) times.

How can I make it run only on one server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过去的过去 2024-12-10 15:17:04

你有没有想过这个天真的解决方案:

# at initialization

if `hostname -f` == 'app1.myapp.com'
  $scheduler = Rufus::Scheduler.start_new
  $scheduler.every '5s' do
    puts "hello world"
  end
else
  # we're on another host, do not schedule anything
  $scheduler = nil
end

Have you thought of this naive solution:

# at initialization

if `hostname -f` == 'app1.myapp.com'
  $scheduler = Rufus::Scheduler.start_new
  $scheduler.every '5s' do
    puts "hello world"
  end
else
  # we're on another host, do not schedule anything
  $scheduler = nil
end

?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文