Peng Zhang created MAPREDUCE-6498:
-------------------------------------
Summary: ClientServiceDelegate should not retry upon
AccessControlException
Key: MAPREDUCE-6498
URL: https://issues.apache.org/jira/browse/MAPREDUCE-6498
Project: Hadoop Map/Reduce
Issue Type: Bug
Reporter: Peng Zhang
Assignee: Peng Zhang
MapReduce client will retry forever when remote AM throw
AccessControlException:
{code:title=MRClientService.java}
if (job != null && !job.checkAccess(ugi, accessType)) {
throw new AccessControlException("User " + ugi.getShortUserName()
+ " cannot perform operation " + accessType.name() + " on "
+ jobID);
}
{code}
This issue is similar to MAPREDUCE-6285 which only handled
{{AuthenticationException}} subclass of {{AccessControlException}}.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)