I am having an issue where if I have 2000 jobs queued and try to delete them with qdel all
, it'll keep trying to delete the running jobs first. This means I have to wait a long time for the jobs to get deleted because removing from the Running
list is slower than Idle
list.
Thus how do I remove all Idle
jobs without touching the Running
jobs?
qstat
output with your usual combination of options. By parsing this output you can usually extract exactly the IDs of the jobs you wish to delete. – Leeds