Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Condor 运行许多作业,并且我想确保作业的运行时间不会超过固定的时间,比如 2 小时。有没有办法在 Condor 提交脚本中指定在这个时间限制之后作业应该被终止并标记为失败?
period_remove = (CommittedTime - CommittedSuspensionTime) > 7200
应该做的伎俩。这仅适用于最新的稳定版本。使用前一个,您可以获得类似(尽管不相同)的效果:
period_remove = (RemoteWallClockTime - CumulativeSuspensionTime) > 60