added initial Condor related stuff
authorJan Pospíšil <honik@ntc.zcu.cz>
Thu, 1 Feb 2007 20:34:48 +0000 (20:34 +0000)
committerJan Pospíšil <honik@ntc.zcu.cz>
Thu, 1 Feb 2007 20:34:48 +0000 (20:34 +0000)
org.glite.lb/project/events.T
org.glite.lb/project/status.T

index a897246..8830837 100644 (file)
        _code_  PARTITIONABLE   The job is partitionable (may become partitioned).
        _code_  PARTITIONED     The job is partitioned (dynamically created dag).
        _code_  COLLECTION      The job is collection (containing static set of subjobs).
-       _code_  PBS
+       _code_  PBS             PBS job
+       _code_  CONDOR          Condor job
        
        int     nsubjobs        Number of subjobs this job plans to spawn.
        _optional_
        string  name            Name of resource
        int     quantity        The quantity
        string  unit            Units (sec, kB, etc.)
+
+
+@type CondorSubmit             Job SUBMITTED to Condor
+       string  universe        Condor Universe
+       string  host            Submitting machine
+       string  condor_id       Condor ID
+
+@type CondorMatch              
+       string  condor_id
+       string  owner
+       string  host
+       string  node
+
+@type CondorExecute
+       string  node            node
+
+@type CondorChkpt
+       string  info    
+
+@type CondorEvict
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorTerminate
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorAbort
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorSuspend
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorUnsuspend
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorHold
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorRelease
+       int     shadow_exit_status      Condor shadow exit status
+       string  reason          reason
+
+@type CondorNodeExecute
+       string  info    
+
+@type CondorNodeTerminate
+       string  info    
+
+@type CondorPostSctiptTerminate
+       string  info    
+
+@type CondorGlobusSubmit
+       int     status_code
+       _code_  OK              The job was submitted successfully
+       _code_  FAIL            Job submission failed
+       string  info
+
+@type CondorGlobusResource
+       int     status_code
+       _code_  UP
+       _code_  DOWN
+       string  info
index 71237d3..9095225 100644 (file)
@@ -9,6 +9,7 @@ int     jobtype         Type of job
        _code_ DAG              composite job
        _code_ COLLECTION       parent of collection of jobs
        _code_ PBS              PBS job
+       _code_ CONDOR           Condor job
 jobid  parent_job      parent job of subjob
 
 string seed            string used for generation of subjob IDs
@@ -84,6 +85,16 @@ string  pbs_dest_host        Hostname of node whre job is running
 int    pbs_pid         PID of running job
 int    pbs_exit_status Job exit status
 
+string condor_status   Condor job status 
+string condor_universe Condor job Universe (in job ClassAds)
+string condor_owner    Job owner
+string condor_pid      PID of running job
+int    condor_notification     Condor notification 
+int    condor_job_exit_status  Job exit status
+int    condor_starter_exit_status      Condor starter exit status
+int    condor_shadow_exit_status       Condor shadow exit status (see h/exit.h)
+
+
 @type Submitted                Entered by the user to the User Interface or registered by Job Partitioner.
 @type Waiting          Accepted by WMS, waiting for resource allocation.
 @type Ready            Matching resources found.