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

Re: [Condor-users] SCHEDD not running right on upgraded CE with Condor 7.6.6



On Apr 4, 2012, at 12:14 PM, Steven Lo wrote:
> Another question if I may.  How do I determine those jobs are handle by Condor correctly??

What do you mean by correctly? One thing you can do is look at jobs that are no longer running, to see what happened with them. For instance, on a small Condor installation where I recently did some testing:

# condor_history
 ID      OWNER            SUBMITTED     RUN_TIME ST   COMPLETED CMD            
   1.0   alainroy        3/26 12:25   0+00:00:01 C   3/26 12:25 /bin/hostname  
   2.0   alainroy        3/28 15:34   0+00:00:06 X   ???        /bin/hostname  
   3.0   alainroy        3/28 15:37   0+00:00:06 X   ???        /bin/hostname  
   4.0   alainroy        3/28 15:38   0+00:01:30 X   ???        /bin/hostname  
...

Here you can see that job 1 completed successfully, while job 2.0 was removed. (In this case, with condor_rm, though you have to look deeper to see that.)

-alain