英文:
HT_condor removing/putting on hold only jobs with a certain batch_name
问题
Suppose I am running 200 jobs on HT_Condor with BATCH_NAME = "Ranking_noVV", and each job has a different JOB_ID, starting, for instance, at 4333042 and ending at 4333242. I would like to remove or put on hold all the jobs with BATCH_NAME == "Ranking_noVV". Is it possible?
I tried the option -name as suggested on the HT_Condor documentation, but that option doesn't refer to the BATCH_NAME.
In the meantime I am running other jobs with different BATCH_NAME and JOB_ID, so the condor_rm -user isn't an option.
Thank you for your help.
英文:
Suppose I am running 200 jobs on HT_Condor with BATCH_NAME = "Ranking_noVV", and each job has a different JOB_ID, starting, for instance, at 4333042 and ending at 4333242. I would like to remove or put on hold all the jobs with BATCH_NAME == "Ranking_noVV". Is it possible?
I tried the option -name as suggested on the HT_Condor documentation, but that option doesn't refer to the BATCH_NAME.
In the meantime I am running other jobs with different BATCH_NAME and JOB_ID, so the condor_rm -user isn't an option.
Thank you for you help
答案1
得分: 0
condor_rm -const 'JobBatchName == "Ranking_noVV"'
or
condor_hold -const 'JobBatchName == "Ranking_noVV"'
英文:
Try
condor_rm -const 'JobBatchName == "Ranking_noVV"'
or
condor_hold -const 'JobBatchName == "Ranking_noVV"'
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论