后台rb定时任务结束

发布于 2024-07-05 22:03:35 字数 314 浏览 9 评论 0原文

我有一个 backroundrb 计划任务需要很长时间才能运行。 然而,该过程似乎仅在 2.5 分钟后就结束了。

我的background.yml 文件:

:schedules:
  :named_worker:
    :task_name:
      :trigger_args: 0 0 12 * * * *
      :data: input_data

当进程运行时,我在服务器上的活动为零。 (这意味着我是服务器上唯一一个观察日志文件执行其操作的人,直到该过程突然停止。)

有什么想法吗?

I have a backroundrb scheduled task that takes quite a long time to run. However it seems that the process is ending after only 2.5 minutes.

My background.yml file:

:schedules:
  :named_worker:
    :task_name:
      :trigger_args: 0 0 12 * * * *
      :data: input_data

I have zero activity on the server when the process is running. (Meaning I am the only one on the server watching the log files do their thing until the process suddenly stops.)

Any ideas?

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

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

发布评论

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

评论(2

窗影残 2024-07-12 22:03:35

谢谢安德鲁。 这些调试技巧很有帮助。 特别是 begin..rescue..end 块。

但调试起来仍然很痛苦。 最终,BackgroundRB 并没有在 2.5 分钟后缩短。 正在建立网络连接,但未正确关闭。 一旦找到并关闭,一切都会很好。

Thanks Andrew. Those debugging tips helped. Especially the begin..rescue..end block.

It was still a pain to debug though. In the end it wasn't BackgroundRB cutting short after 2.5 minutes. There was a network connection being made that wasn't being closed properly. Once that was found and closed, everything works great.

雨的味道风的声音 2024-07-12 22:03:35

这里没有太多信息可以让我们深入了解问题的根源。
由于backgroundrb在后台运行,因此监视/调试可能非常困难。

以下是我使用的一些想法:

  1. 编写一个单元测试来测试工作程序代码本身,并确保那里没有问题
  2. 在代码中的多个点放置“puts”语句,这样您至少可以在工作程序运行时看到一些响应。
  3. 将整个工作程序包装在 begin..rescue..end 块中,以便您可以捕获可能发生的任何错误并缩短流程。

There's not much information here that allows us to get to the bottom of the problem.
Because backgroundrb operates in the background, it can be quite hard to monitor/debug.

Here are some ideas I use:

  1. Write a unit test to test the worker code itself and make sure there are no problems there
  2. Put "puts" statements at multiple points in the code so you can at least see some responses while the worker is running.
  3. Wrap the entire worker in a begin..rescue..end block so that you can catch any errors that might be occurring and cutting the process short.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文