8

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

Kamil Kisiel
  • 11,946
  • 7
  • 46
  • 68
pufferfish
  • 2,660
  • 9
  • 37
  • 40

1 Answers1

10

If you have ENABLE_FORCED_QDEL set as part of qmaster_params in your cluster configuration (see the sge_conf(5) man page), then users can run qdel -f <jobid> to force deletion of their own jobs.

justarobert
  • 1,859
  • 13
  • 8