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_r282811119
##########
File path: tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/TaskImpl.java
##########
@@ -1027,7 +1027,7 @@ public void transition(TaskImpl task, TaskEvent event) {
TaskAttempt earliestUnfinishedAttempt = null;
for (TaskAttempt ta : task.attempts.values()) {
// find the oldest running attempt
- if (!ta.isFinished()) {
+ if (!ta.isFinished() && task.commitAttempt == null) {
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