[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Condor-users] java jobs in condor
- Date: Thu, 10 Aug 2006 17:45:44 +0530
- From: "Pranav Aggarwal" <pranav.aggwl@xxxxxxxxx>
- Subject: [Condor-users] java jobs in condor
Hi,
I am trying to submit java jobs at condor pool
$ cat submit_simple1java
Universe = java
Executable = simple1.class
Arguments = 4 10
Log = simple1java.log
Output = simple1java.out
Error = simple1java.err
Queue
the java files takes 2 inputs, in this case '4' and '10' ... it waits for 4 seconds and multplies 10 * 2...
when i do
$condor_status -java
Name JavaVendor Ver State Activity LoadAv Mem ActvtyTime
vm1@kanchan-w Sun Microsy 1.5.0_ Unclaimed Idle 0.000 128 0+00:30:08
vm2@kanchan-w Sun Microsy 1.5.0_ Unclaimed Idle 0.000 128 0+00:15:05
Total Owner Claimed Unclaimed Matched Preempting Backfill
INTEL/LINUX 2 0 0 2 0 0 0
Total 2 0 0 2 0 0 0
which i guess means that there is a machine which can handle java jobs... if submitted...
and
$condor_q -analyze 6.0 (6.0 is the name of the job id.. which i submitted using
$condor_submit submit_simple1java )
which says...
-- Submitter: pal-w2p.corp.cdac.in : <192.168.7.131:32803> : pal-w2p.corp.cdac.in
ID OWNER SUBMITTED RUN_TIME ST PRI SIZE CMD
---
018.000: Run analysis summary. Of 4 machines,
4 are rejected by your job's requirements
0 reject your job because of their own requirements
0 match but are serving users with a better priority in the pool
0 match but reject the job for unknown reasons
0 match but will not currently preempt their existing job
0 are available to run your job
No successful match recorded.
Last failed match: Thu Aug 10 17:42:21 2006
Reason for last match failure: no match found
WARNING: Be advised:
No resources matched request's constraints
Check the Requirements _expression_ below:
Requirements = (HasJava) && (Disk >= DiskUsage) && ((Memory * 1024) >= ImageSize) && (TARGET.FileSystemDomain == MY.FileSystemDomain)
i guess the requirement is not being met... any cure for this problem...
thanx,
Pranav.......