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.

Reply via email to