Condor 中的最长运行时间
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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