You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-dev@hadoop.apache.org by "Bibin A Chundatt (JIRA)" <ji...@apache.org> on 2019/03/21 07:31:00 UTC

[jira] [Created] (MAPREDUCE-7195) Mapreduce task timeout to zero could cause too many status update

Bibin A Chundatt created MAPREDUCE-7195:
-------------------------------------------

             Summary: Mapreduce task timeout to zero could cause too many status update
                 Key: MAPREDUCE-7195
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7195
             Project: Hadoop Map/Reduce
          Issue Type: Bug
            Reporter: Bibin A Chundatt



* mapreduce.task.timeout=0

Could create too many status update

{code}
  public static long getTaskProgressReportInterval(final Configuration conf) {
    long taskHeartbeatTimeOut = conf.getLong(
        MRJobConfig.TASK_TIMEOUT, MRJobConfig.DEFAULT_TASK_TIMEOUT_MILLIS);
    return conf.getLong(MRJobConfig.TASK_PROGRESS_REPORT_INTERVAL,
        (long) (TASK_REPORT_INTERVAL_TO_TIMEOUT_RATIO * taskHeartbeatTimeOut));
  }

{code}



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

---------------------------------------------------------------------
To unsubscribe, e-mail: mapreduce-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: mapreduce-dev-help@hadoop.apache.org