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 "Owen O'Malley (JIRA)" <ji...@apache.org> on 2009/03/05 00:41:56 UTC

[jira] Created: (HADOOP-5402) TaskTracker ignores most RemoteExceptions from heartbeat processing

TaskTracker ignores most RemoteExceptions from heartbeat processing
-------------------------------------------------------------------

                 Key: HADOOP-5402
                 URL: https://issues.apache.org/jira/browse/HADOOP-5402
             Project: Hadoop Core
          Issue Type: Bug
    Affects Versions: 0.21.0
            Reporter: Owen O'Malley


The code in TaskTracker.offerService looks like:

{code}
      } catch (RemoteException re) {
        String reClass = re.getClassName();
        if (DisallowedTaskTrackerException.class.getName().equals(reClass)) {
          LOG.info("Tasktracker disallowed by JobTracker.");
          return State.DENIED;
        }
     }
{code}

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