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?
相关问题
- slurm: use a control node also for computing
- How to set the maximum priority to a Slurm job?
- How to let SBATCH send stdout via email?
- SLURM: Embarrassingly parallel program inside an e
- Is it possible to submit a series of different job
相关文章
- Questions on alternative ways to run 4 parallel jo
- SLURM sbatch job array for the same script but wit
- Adding time to a running slurm job
- How to configure the content of slurm notification
- SLURM job taking up entire node when using just on
- Limit the number of running jobs in SLURM
- How to run a job array in R using the rscript comm
- Find out the CPU time and memory usage of a slurm
Use the scontrol command to modify a job
scontrol update jobid=<job_id> TimeLimit=<new_timelimit>
Requires admin privileges on some machines.