Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Time between two Negociator deamon execution
- Date: Tue, 19 Dec 2006 11:24:24 -0500
- From: "Ian Chesal" <ICHESAL@xxxxxxxxxx>
- Subject: Re: [Condor-users] Time between two Negociator deamon execution
> I see that the condor negotiator daemon check the queue each 5 minutes
> to determine on which
> machine the job will run. It's possible to modify this behavior and
> change the time between two
> jobs queue analyze?
You can call condor_reschedule after you submit to trigger a new
negotiation cycle. See:
http://www.cs.wisc.edu/condor/manual/v6.9/condor_reschedule.html#55515
If you want to negotiate at a higher frequency you can adjust
NEGOTIATOR_INTERVAL. See:
http://www.cs.wisc.edu/condor/manual/v6.9/3_3Configuration.html#13201
And it's worth noting that the negotiator should always wait
NEGOTIATOR_CYCLE_DELAY between any negotiation cycle regardless of
NEGOTIATOR_INTERVAL or how frequently condor_reschedule is called. This
gives the collector a chance to get updated so the negotiator isn't
basing decisions on stale status information.
- Ian