Repository: tez
Updated Branches:
refs/heads/branch-0.8 6e0c38180 -> b23e17c6f
TEZ-3009. Errors that occur during container task acquisition are not logged.
(jlowe)
(cherry picked from commit 8cc142fa472733befe9825686147c227240bd676)
Conflicts:
CHANGES.txt
Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/b23e17c6
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/b23e17c6
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/b23e17c6
Branch: refs/heads/branch-0.8
Commit: b23e17c6f6ce42d0db77f136b8b8d8e20174db62
Parents: 6e0c381
Author: Jason Lowe <[email protected]>
Authored: Wed Aug 31 13:52:22 2016 +0000
Committer: Jason Lowe <[email protected]>
Committed: Wed Aug 31 13:52:22 2016 +0000
----------------------------------------------------------------------
CHANGES.txt | 2 ++
.../src/main/java/org/apache/tez/runtime/task/TezChild.java | 2 ++
2 files changed, 4 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/tez/blob/b23e17c6/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index c2f8340..3712093 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES
ALL CHANGES:
+ TEZ-3009. Errors that occur during container task acquisition are not logged.
TEZ-2852. TestVertexImpl fails due to race in AsyncDispatcher.
TEZ-3413. ConcurrentModificationException in HistoryEventTimelineConversion
for AppLaunchedEvent.
TEZ-3352. MRInputHelpers getStringProperty() should not fail if property
value is null.
@@ -501,6 +502,7 @@ INCOMPATIBLE CHANGES
ALL CHANGES:
+ TEZ-3009. Errors that occur during container task acquisition are not logged.
TEZ-3413. ConcurrentModificationException in HistoryEventTimelineConversion
for AppLaunchedEvent.
TEZ-3286. Allow clients to set processor reserved memory per vertex (instead
of per container).
TEZ-3223. Support a NullHistoryLogger to disable history logging if needed.
http://git-wip-us.apache.org/repos/asf/tez/blob/b23e17c6/tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TezChild.java
----------------------------------------------------------------------
diff --git
a/tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TezChild.java
b/tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TezChild.java
index 07810d9..3c2d19a 100644
---
a/tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TezChild.java
+++
b/tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TezChild.java
@@ -219,6 +219,8 @@ public class TezChild {
} catch (ExecutionException e) {
error = true;
Throwable cause = e.getCause();
+ LOG.error("Error fetching new work for container {}",
containerIdString,
+ cause);
return new
ContainerExecutionResult(ContainerExecutionResult.ExitStatus.EXECUTION_FAILURE,
cause, "Execution Exception while fetching new work: " +
e.getMessage());
} catch (InterruptedException e) {