You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Doug Cutting (JIRA)" <ji...@apache.org> on 2007/04/02 23:09:32 UTC

[jira] Reopened: (HADOOP-1191) MapTask should wait for the status reporting thread to die before invoking the TaskUmbilicalProtocol.done(taskid)

     [ https://issues.apache.org/jira/browse/HADOOP-1191?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting reopened HADOOP-1191:
----------------------------------

      Assignee: Doug Cutting  (was: Devaraj Das)

Argh.  I committed this too soon.  It causes unit tests to hang.  I talked to Owen & he saw the underlying problem: Client.java traps InterruptedException, so Thread.join() won't return if the thread is in an RPC when interrupted.  I have a patch I will submit soon.

> MapTask should wait for the status reporting thread to die before invoking the TaskUmbilicalProtocol.done(taskid)
> -----------------------------------------------------------------------------------------------------------------
>
>                 Key: HADOOP-1191
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1191
>             Project: Hadoop
>          Issue Type: Bug
>          Components: mapred
>    Affects Versions: 0.12.2
>            Reporter: Devaraj Das
>         Assigned To: Doug Cutting
>             Fix For: 0.12.3
>
>         Attachments: 1191.patch
>
>
> Currently, the status reporting thread is sent an interrupt and immediately after that TaskUmbilicalProtocol.done() is invoked. A better thing to do is to wait for the thread to die before invoking done() otherwise it is possible that a status message just makes it through and then the Task is put in RUNNING state at the TaskTracker. This results in inconsistency about the runstate of a task at the TaskTracker's end.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.