How to find from where a job is submitted in SLURM?

后端 未结 3 1720
余生分开走
余生分开走 2021-02-01 09:40

I submitted several jobs via SLURM to our school\'s HPC cluster. Because the shell scripts all have the same name, so the job names appear exactly the same. It looks like

<
3条回答
  •  春和景丽
    2021-02-01 10:07

    In order to list the work directory of past jobs that are no longer accessible via squeue or scontrol, you can use sacct:

    sacct -S 2020-08-10 -u myUserName --format "jobid,jobname%20,workdir%70"
    

    Lists job id, job name and work directory of all jobs of user myUserName since August 10th, 2020.

提交回复
热议问题