Repository: tez Updated Branches: refs/heads/master 5149cc486 -> 8cc142fa4
TEZ-3009. Errors that occur during container task acquisition are not logged. (jlowe) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/8cc142fa Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/8cc142fa Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/8cc142fa Branch: refs/heads/master Commit: 8cc142fa472733befe9825686147c227240bd676 Parents: 5149cc4 Author: Jason Lowe <[email protected]> Authored: Wed Aug 31 13:49:39 2016 +0000 Committer: Jason Lowe <[email protected]> Committed: Wed Aug 31 13:49:39 2016 +0000 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ .../src/main/java/org/apache/tez/runtime/task/TezChild.java | 2 ++ 2 files changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/8cc142fa/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index eb02a09..1602bb7 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-2741. Hive on Tez does not work well with Sequence Files Schema changes. TEZ-2852. TestVertexImpl fails due to race in AsyncDispatcher. TEZ-3395. Refactor ShuffleVertexManager to make parts of it re-usable in other plugins. @@ -101,6 +102,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. @@ -585,6 +587,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/8cc142fa/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) {
