Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Condor-users] custom machine ad attributes
- Date: Mon, 7 Nov 2011 03:53:13 +0000
- From: "Rowe, Thomas" <rowet@xxxxxxxxxx>
- Subject: [Condor-users] custom machine ad attributes
I need to steer jobs to a machine with a local service running (ostore). I put the following in the condor_config.local of the machine with this OSTORE service:
OSTORE_CAPABLE = True
STARTD_ATTRS = $(STARTD_ATTRS), OSTORE_CAPABLE
I put this in the submit file for a job that requires OSTORE service:
requirements = (OSTORE_CAPABLE =?= True)
When I submit the job it goes idle and condor_q -analyze reports:
Condition Machines Matched Suggestion
1 ( target.OSTORE_CAPABLE is true ) 10 REMOVE
2 ( TARGET.HasWindowsRunAsOwner && ( TARGET.LocalCredd is "Nurse" ) )
...
Conflicts:
conditions: 1, 2
I don't understand what this means or what I have done wrong. condor_q says 10 slots match the OSTORE_CAPABLE condition, which is as expected. I don't know why it's complaining about condition 2, because the runasowner stuff is working fine for everything else.
Thanks in advance.