[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] submitting job to specific multiple machines
- Date: Mon, 18 Jul 2011 16:33:06 -0700
- From: Erik Erlandson <eje@xxxxxxxxxx>
- Subject: Re: [Condor-users] submitting job to specific multiple machines
In a condor pool if I want to submit a job to some specific machines (eg. I choose 3 machines from cluster on which my job should run). How can I submit job like this.
The best way to do that is with the requirements _expression_:
http://www.cs.wisc.edu/condor/manual/v7.6/2_5Submitting_Job.html#1972
http://www.cs.wisc.edu/condor/manual/v7.6/4_1Condor_s_ClassAd.html#39660
e.g.
Requirements = (machine == "friend1.cs.wisc.edu") || (machine == "friend2.cs.wisc.edu") || (machine == "friend3.cs.wisc.edu")