在特定时间范围内运行 rake 脚本

发布于 2024-12-24 17:18:11 字数 119 浏览 0 评论 0原文

我需要在特定时间运行 rake 脚本。例如 10 分钟、1 小时等,如果脚本尚未完成,则无论如何都要停止它。

为什么我需要这个?因为几个小时后内存就满了!

有什么建议吗?

谢谢

i need to run rake script for specific time. For example 10 minutes, 1 hour, etc., and if the script it's not finished stop it anyway.

Why i need this ? Because after some hours the memory is full!

Any suggestion ?

Thanks

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

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

发布评论

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

评论(1

吝吻 2024-12-31 17:18:11

我认为你应该首先考虑是什么让这个脚本占用了这么多内存。

(一件事是从数据库加载大量记录,并将它们附加到一个数组中)

但是假设您已经完成了所有可以做的事情,
我会做这样的事情。

LIVE_FOR = 1.hour

def run!
  finish_before = LIVE_FOR.from_now

  array = get_the_array # some big collection to operate on

  array.each do |object|
    while Time.now < finish_before
      ...
    end
  end
end

但实际上,我首先尝试解决内存泄漏的原因。

I think you should first consider what is making this script use up so much memory.

(one thing would be loading up lots of records from the database, and appending them to an array)

But assuming you have already done everything you can,
I'd do something like this.

LIVE_FOR = 1.hour

def run!
  finish_before = LIVE_FOR.from_now

  array = get_the_array # some big collection to operate on

  array.each do |object|
    while Time.now < finish_before
      ...
    end
  end
end

But really, i'd first try to tackle why you have a memory leak.

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