use of cz.metacentrum.perun.taskslib.exceptions.TaskStoreException in project perun by CESNET.
the class SendPlanner method run.
@Override
public void run() {
BlockingQueue<Task> generatedTasks = schedulingPool.getGeneratedTasksQueue();
while (!shouldStop()) {
try {
Task task = generatedTasks.take();
// has destinations -> SENDING
if (task.getDestinations().isEmpty()) {
task.setStatus(Task.TaskStatus.ERROR);
try {
jmsQueueManager.reportTaskStatus(task.getId(), task.getStatus(), System.currentTimeMillis());
} catch (JMSException e) {
jmsLogError(task);
}
try {
schedulingPool.removeTask(task);
} catch (TaskStoreException e) {
log.error("[{}] Generated Task without destinations could not be removed from SchedulingPool: {}", task.getId(), e);
}
// skip to next generated Task
continue;
}
// Task has destinations
task.setStatus(Task.TaskStatus.SENDING);
// TODO - would be probably better to have this as one time call after first SendWorker is submitted
// TODO but then processing stuck tasks must reflect, that SENDING task might have sendStartTime=NULL
task.setSendStartTime(LocalDateTime.now());
schedulingPool.addSendTaskCount(task, task.getDestinations().size());
try {
jmsQueueManager.reportTaskStatus(task.getId(), task.getStatus(), task.getSendStartTime().atZone(ZoneId.systemDefault()).toInstant().toEpochMilli());
} catch (JMSException e) {
jmsLogError(task);
}
// create SendTask and SendWorker for each Destination
for (Destination destination : task.getDestinations()) {
// submit for execution
SendTask sendTask = new SendTask(task, destination);
SendWorker worker = new SendWorkerImpl(sendTask, directory);
sendCompletionService.blockingSubmit(worker);
}
} catch (InterruptedException e) {
String errorStr = "Thread planning SendTasks was interrupted.";
log.error(errorStr);
throw new RuntimeException(errorStr, e);
} catch (Throwable ex) {
log.error("Unexpected exception in SendPlanner thread. Stuck Tasks will be cleaned by PropagationMaintainer#endStuckTasks() later.", ex);
}
}
}
Aggregations