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

Re: [HTCondor-users] Help: How to use VM Universe? Thank you



Hi, Thank you very much for your help.
The result of condor_q -analyze 12.0 is as follows:


-- Submitter: 220.abc.com : <aaa.xxx.15.xxx:54892> : 220.abc.com 
User priority for abc@xxxxxxx is not available, attempting to analyze without it.
---
012.000:  Run analysis summary.  Of 56 machines,
     56 are rejected by your job's requirements
      0 reject your job because of their own requirements
      0 match and are already running your jobs
      0 match but are serving other users
      0 are available to run your job
        No successful match recorded.
        Last failed match: Tue May 14 21:26:08 2013
        Reason for last match failure: no match found

WARNING:  Be advised:
   No resources matched request's constraints

The Requirements _expression_ for your job is:

    ( ( TARGET.Arch == "X86_64" ) && ( TARGET.HasVM ) &&
      ( TARGET.VM_Type == "kvm" ) && ( TARGET.VM_AvailNum > 0 ) &&
      ( TARGET.Disk >= RequestDisk ) && ( TARGET.HasFileTransfer ) ) &&
    ( TARGET.FileSystemDomain == MY.FileSystemDomain ) &&
    ( TARGET.TotalMemory >= 2048 ) && ( TARGET.VM_Memory >= 2048 ) &&
    ( ( MY.CkptArch == Arch ) || ( MY.CkptArch is undefined ) ) &&
    ( ( MY.VM_CkptMac is undefined ) ||
    &! nbsp; ( TARGET.VM_All_Guest_Macs is undefined ) ||
  &n bsp;   ( stringListIMember(MY.VM_CkptMac,TARGET.VM_All_Guest_Macs,",") == false ) )


Suggestions:

    Condition                         Machines Matched    Suggestion
    ---------                         ----------------    ----------
1   ( TARGET.HasVM )                  0                   MODIFY TO false
2   ( TARGET.VM_Type == "kvm" )       0                   REMOVE
3   ( TARGET.VM_AvailNum > 0 )        0                   REMOVE
4   ( TARGET.Disk >= 75000000! )       0                   MODIFY TO 1727434
5   ( TARGET.VM_Memory >= 2048 )      0                   REMOVE
6   ( TARGET.FileSystemDomain == "abc.com" )48
7   ( TARGET.Arch == "X86_64" )       56
8   ( TARGET.HasFileTransfer )        56
9   ( TARGET.TotalMemory >= 2048 )    56
10  ( ( MY.CkptArch == target.Arch ) || ( MY.CkptArch is undefined ) )
                                      56
11  ( ( MY.VM_CkptMac is undefined ) || ( TARGET.VM_All_Guest_Macs is undefined ) || ( stringListIMember(MY.VM_CkptMac,TARGET.VM_All_Guest_Macs,",") == false ) )
           !                           56

It seems that the kvm is not running?
I run the command :  lsmod |grep kvm and the result is:
kvm                   316602  0

the result of the command :ps aux |grep kvm   is:
root      1690  0.0  0.0      0     0 ?        S    May08   0:00 [kvm-irqfd-clean]
abc      18932  0.0  0.0 103252   868 pts/4    S+   21:37   0:00 grep kvm

Thanks a lot.





At 2013-05-14 21:29:35,"Brian Candler" <B.Candler@xxxxxxxxx> wrote: >On Tue, May 14, 2013 at 08:05:56PM +0800, btdan wrote: >>    and the result of  condor_q is : >>  >>    -- Submitter: 220.esc.cnic.cn : <159.226.15.220:54892> : 220.esc.cnic.c >>    n >>     ID      OWNER            SUBMITTED     RUN_TIME ST PRI SIZE CMD >>    12.0   abc          5/14 19:56   0+00:00:00 I  0   0.0  kvm_sample_job > >The command condor_q -analyze <jobid> gives detailled information on the >status of the job, and possible reasons why it is not running. > >condor_q -analyze 12.0 > >More info: >http://research.cs.wisc.edu/htcondor/manual/v7.8/2_6Managing_Job.html#sec:job-not-running > >Sorry but I don't know anything about VM universe, this is just general >condor usage.