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

Re: [Condor-users] No resources matched request's constraints



I found the problem not long after submitting it.  It was lack of
quotes in the job description file.  Arch == X86_64 is false.  Arch ==
"X86_64" evaluates to true.  Fixing that made the job run.

Rob

On 4/18/06, Matt Hope <matthew.hope@xxxxxxxxx> wrote:
> On 4/14/06, Rob McCauley <rob.mccauley@xxxxxxxxx> wrote:
> > Help, please! :)
> >
> > I'm getting the error "No resources matched requests's constraints".
> > The problem is it's not true.
> >
> > >From condor_q -ana
> >
> > WARNING:  Be advised:
> >   No resources matched request's constraints
> >   Check the Requirements expression below:
> >
> > Requirements = (Arch == X86_64) && (OpSys == "LINUX") && (Disk >=
> > DiskUsage) && ((Memory * 1024) >= ImageSize) && (HasFileTransfer)
> >
> > An excerpt from condor_status -long:
>
> for the job in question X.Y run the following
>
> condor_q X.Y -l
>
> this will tell you what the *current* state of it's parameters are
> (for example ImageSize can be dynamically adjusted as the job
> progresses thus pushing it over 1GB). The DiskUsage will also come
> from the jobs ad.
>
> > Memory = 1979
> > So the requirements are:
> >
> > Arch == X86_64 ... check!
> > OpSys == LINUX ...check!
>
> both fine
>
> > Disk >= DiskUsg ...check! (from condor_submit -v, DiskUsg is 1.
> > Memory * 1024 > ImageSize ...check! (ImageSize is 1)
>
> not necessarily - check what the job is currently advertising...
>
>
> That should clear it it up
>
> Matt
>
> _______________________________________________
> Condor-users mailing list
> Condor-users@xxxxxxxxxxx
> https://lists.cs.wisc.edu/mailman/listinfo/condor-users
>