I see only 1 sec. gap for 24 jobs out of 154193 records in the
history:EnteredCurrentStatus appears to be identical to CompletionDate. The plus side is I save almost 49 sec. on average using only EnteredCurrentStatus compare to using ifThenElse _expression_ on my system.[root@serv07 ~]# condor_history -format "%d\n" 'ClusterId' | wc -l 154193 [root@serv07 ~]# condor_history -format "%d\n" 'CompletionDate - EnteredCurrentStatus' -const 'CompletionDate != 0 && CompletionDate != EnteredCurrentStatus' | sort | uniq -c 24 1 [root@serv07 ~]# Cheers, Santanu So, I think I can live with 1 second of A little exploration... |