Chyler commented on a change in pull request #42: TEZ-4068: Prevent new
speculative attempt after task has issued canCo…
URL: https://github.com/apache/tez/pull/42#discussion_r282813665
##########
File path: tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/TaskImpl.java
##########
@@ -1043,6 +1043,10 @@ public void transition(TaskImpl task, TaskEvent event) {
LOG.info("Ignore speculation scheduling since there is no running
attempt on task {}.", task.getTaskId());
return;
}
+ if (task.commitAttempt != null) {
+ LOG.info("Ignore speculation scheduling since there is commitAttempt
on task {}.", task.commitAttempt);
Review comment:
done
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services