Adding time to a running slurm job

我与影子孤独终老i 提交于 2019-12-04 08:47:53

问题


I have a job running a linux machine managed by slurm. Now that the job is running for a few hours I realize that I underestimated the time required for it to finish and thus the value of the --time argument I specified is not enough. Is there a way to add time to an existing running job through slurm?


回答1:


Use the scontrol command to modify a job

scontrol update jobid=<job_id> TimeLimit=<new_timelimit>

Requires admin privileges on some machines.



来源:https://stackoverflow.com/questions/28413418/adding-time-to-a-running-slurm-job

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!