You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tez.apache.org by "Jonathan Eagles (JIRA)" <ji...@apache.org> on 2018/09/26 16:47:00 UTC

[jira] [Commented] (TEZ-3969) TaskAttemptImpl: static fields initialized in instance ctor

    [ https://issues.apache.org/jira/browse/TEZ-3969?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16629106#comment-16629106 ] 

Jonathan Eagles commented on TEZ-3969:
--------------------------------------

[~jmarhuen], this patch looks good but doesn't apply anymore. Can you please provide an updated patch?

> TaskAttemptImpl: static fields initialized in instance ctor
> -----------------------------------------------------------
>
>                 Key: TEZ-3969
>                 URL: https://issues.apache.org/jira/browse/TEZ-3969
>             Project: Apache Tez
>          Issue Type: Bug
>            Reporter: Gopal V
>            Assignee: Jaume M
>            Priority: Minor
>         Attachments: TEZ-3969.1.patch, TEZ-3969.2.patch
>
>
> The TODO is probably well-placed (& the bug looks somewhat intentional to minimize the size of TaskAttemptImpl object).
> This isn't causing any bugs at the moment, because the block is called from the same thread always.
> {code}
> public TaskAttemptImpl(TezTaskAttemptID attemptId, EventHandler eventHandler,
>  ...
>     // TODO: Move these configs over to Vertex.VertexConfig
>     MAX_ALLOWED_OUTPUT_FAILURES = conf.getInt(TezConfiguration
>         .TEZ_TASK_MAX_ALLOWED_OUTPUT_FAILURES, TezConfiguration
>         .TEZ_TASK_MAX_ALLOWED_OUTPUT_FAILURES_DEFAULT);
>     MAX_ALLOWED_OUTPUT_FAILURES_FRACTION = conf.getDouble(TezConfiguration
>         .TEZ_TASK_MAX_ALLOWED_OUTPUT_FAILURES_FRACTION, TezConfiguration
>         .TEZ_TASK_MAX_ALLOWED_OUTPUT_FAILURES_FRACTION_DEFAULT);
>     
>     MAX_ALLOWED_TIME_FOR_TASK_READ_ERROR_SEC = conf.getInt(
>         TezConfiguration.TEZ_AM_MAX_ALLOWED_TIME_FOR_TASK_READ_ERROR_SEC,
>         TezConfiguration.TEZ_AM_MAX_ALLOWED_TIME_FOR_TASK_READ_ERROR_SEC_DEFAULT);
> {code}
> But these fields are static members of the class & this is excluded in the findbugs to avoid warnings.
> {code}
>   private static double MAX_ALLOWED_OUTPUT_FAILURES_FRACTION;
>   private static int MAX_ALLOWED_OUTPUT_FAILURES;
>   private static int MAX_ALLOWED_TIME_FOR_TASK_READ_ERROR_SEC;
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)