[ https://issues.apache.org/jira/browse/MAPREDUCE-7198?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16846350#comment-16846350 ]
Hudson commented on MAPREDUCE-7198: ----------------------------------- SUCCESS: Integrated in Jenkins build Hadoop-trunk-Commit #16588 (See [https://builds.apache.org/job/Hadoop-trunk-Commit/16588/]) MAPREDUCE-7198. mapreduce.task.timeout=0 configuration used to disable (aajisaka: rev 5565f2c532f5a2bee6999155672dce8bf3179519) * (edit) hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml * (edit) hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/test/java/org/apache/hadoop/mapreduce/v2/app/TestTaskHeartbeatHandler.java * (edit) hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/TaskHeartbeatHandler.java > mapreduce.task.timeout=0 configuration used to disable timeout doesn't work > --------------------------------------------------------------------------- > > Key: MAPREDUCE-7198 > URL: https://issues.apache.org/jira/browse/MAPREDUCE-7198 > Project: Hadoop Map/Reduce > Issue Type: Bug > Reporter: Akira Ajisaka > Assignee: Akira Ajisaka > Priority: Minor > Fix For: 3.3.0 > > Attachments: MAPREDUCE-7198.01.patch, MAPREDUCE-7198.02.patch > > > mapreduce.task.timeout=0 configuration used to disable timeout doesn't work > after MAPREDUCE-6190. If the task timeout is configured as zero the task > fails with stuck timeout, if the TaskStatus is null. > {code} > if (sendProgress) { > // we need to send progress update > updateCounters(); > checkTaskLimits(); > taskStatus.statusUpdate(taskProgress.get(), > taskProgress.toString(), > counters); > amFeedback = umbilical.statusUpdate(taskId, taskStatus); > taskFound = amFeedback.getTaskFound(); > taskStatus.clearStatus(); > } > else { > // send ping > amFeedback = umbilical.statusUpdate(taskId, null); > taskFound = amFeedback.getTaskFound(); > } > {code} > This issue is reported by [~bibinchundatt]. -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: mapreduce-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: mapreduce-issues-h...@hadoop.apache.org