Condor 中的最长运行时间

发布于 2024-11-05 10:23:18 字数 100 浏览 0 评论 0原文

我正在使用 Condor 运行许多作业,并且我想确保作业的运行时间不会超过固定的时间,例如 2 小时。有没有办法在 Condor 提交脚本中指定在此时间限制后应终止作业并将其标记为失败?

I'm using Condor to run many jobs, and I want to make sure that jobs don't run for more than a fixed amount of time, say 2 hours. Is there a way to specify in the Condor submission script that the job should be killed and marked as failed after this time limit?

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

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

发布评论

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

评论(1

弄潮 2024-11-12 10:23:18

period_remove = (提交时间 - 提交暂停时间) > 7200

应该可以。这仅适用于最新的稳定版本。使用前一个,您可以获得类似(尽管不相同)的效果:

periodic_remove = (RemoteWallClockTime - CumulativeSuspensionTime) > 60

periodic_remove = (CommittedTime - CommittedSuspensionTime) > 7200

should do the trick. This would only work in the latest stable version. With the previous one you can get similar (though not the same) effect with:

periodic_remove = (RemoteWallClockTime - CumulativeSuspensionTime) > 60

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