Is there a way that my users can kill their own jobs that are stuck in the dr state?
qstat -f <jobid>
as the user, returns
job <jobid> is already in deletion
yet when run as root it does get deleted
Is there a way that my users can kill their own jobs that are stuck in the dr state?
qstat -f <jobid>
as the user, returns
job <jobid> is already in deletion
yet when run as root it does get deleted
If you have
ENABLE_FORCED_QDEL
set as part ofqmaster_params
in your cluster configuration (see thesge_conf(5)
man page), then users can runqdel -f <jobid>
to force deletion of their own jobs.