Details
-
Bug
-
Status: Patch Available
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
MapReduce client will retry forever when remote AM throw AccessControlException:
MRClientService.java
if (job != null && !job.checkAccess(ugi, accessType)) { throw new AccessControlException("User " + ugi.getShortUserName() + " cannot perform operation " + accessType.name() + " on " + jobID); }
This issue is similar to MAPREDUCE-6285 which only handled AuthenticationException subclass of AccessControlException.