[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Using TARGET attributes in job classad



Hi


I believe in the job classad it should be

     ert=$$(gluecestateestimatedresponsetime)

instead of 

   ert=$$(TARGET.gluecestateestimatedresponsetime)  

Regards,
Gabriel


On Thu, 2005-07-28 at 04:33, Rod Walker wrote:
> Hi,
> I want to get a TARGET machine attribute into the job classad so that I 
> can use it in the job control methods, periodic_*. 
> 
> In the CondorG machine classad I have
> gluecestateestimatedresponsetime = 1234
> queue = "atlas"
> gatekeeper_url = "CE.pakgrid.org.pk:2119/jobmanager-lcgpbs"
> 
> In my job classad I have
> globusrsl=(jobtype=single)(queue=$$(queue))
> globusscheduler = $$(gatekeeper_url)
> and this results in the attributes
> MATCH_gatekeeper_url
> MATCH_queue
> being available in the job classad. So I figured adding
> ert=$$(TARGET.gluecestateestimatedresponsetime)
> would be sufficient to get
> MATH_gluecestateestimatedresponsetime
> added to the classad, but how wrong I was.
> 
> Cheers,
> Rod.