Our HPC is stuck on a pretty old version of SLURM (14.03), for which scancel --jobname doesn't exist -- only scancel --name (which does the same thing). Here is the man page for scancel v.14.11.
In the current version of SLURM (19.05, as of this issue), scancel --jobname is a synonym for scancel --name (man page), presumably for backwards-compatibility.
Given that HPCs are often pretty conservative about updating core systems like this, it would be nice if clustermq supported older versions of SLURM. The easiest would be just to change the call from --jobname to --name in the SLURM::finalize method.
Our HPC is stuck on a pretty old version of SLURM (14.03), for which
scancel --jobname
doesn't exist -- onlyscancel --name
(which does the same thing). Here is the man page forscancel
v.14.11.In the current version of SLURM (19.05, as of this issue),
scancel --jobname
is a synonym forscancel --name
(man page), presumably for backwards-compatibility.Given that HPCs are often pretty conservative about updating core systems like this, it would be nice if
clustermq
supported older versions of SLURM. The easiest would be just to change the call from--jobname
to--name
in theSLURM::finalize
method.