LOG.info("Running coordinator status service from last instance time = "
+ DateUtils.convertDateToString(lastInstanceStartTime));
// this is not the first instance, we should only check jobs that have actions been
// updated >= start time of last service run;
List<CoordinatorActionBean> actionList = jpaService
.execute(new CoordActionsGetByLastModifiedTimeJPAExecutor(lastInstanceStartTime));
Set<String> coordIds = new HashSet<String>();
for (CoordinatorActionBean action : actionList) {
coordIds.add(action.getJobId());
}
pendingJobCheckList = new ArrayList<CoordinatorJobBean>();