[
https://issues.apache.org/jira/browse/TEZ-3009?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15064650#comment-15064650
]
Jason Lowe commented on TEZ-3009:
---------------------------------
I don't see any indication it's fixed in master. From TezChild.run:
{code}
try {
containerTask = getTaskFuture.get();
} catch (ExecutionException e) {
error = true;
Throwable cause = e.getCause();
return new
ContainerExecutionResult(ContainerExecutionResult.ExitStatus.EXECUTION_FAILURE,
cause, "Execution Exception while fetching new work: " +
e.getMessage());
{code}
So the exception can be silently handled unless the return result is inspected.
TezChild.main simply calls the run method and ignores the result.
> Errors that occur during container task acquisition are not logged
> ------------------------------------------------------------------
>
> Key: TEZ-3009
> URL: https://issues.apache.org/jira/browse/TEZ-3009
> Project: Apache Tez
> Issue Type: Bug
> Affects Versions: 0.7.0
> Reporter: Jason Lowe
>
> If TezChild encounters an error while trying to obtain a task the error will
> be silently handled. This results in a mysterious shutdown of containers
> with no cause.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)