YARN-6271. yarn rmadin -getGroups returns information from standby RM. Contributed by Jian He.

(cherry picked from commit 8db7a8c3aea3d989361f32cca5b271e9653773b6)
This commit is contained in:
Junping Du 2017-03-03 14:39:31 -08:00
parent 30b43a2d4e
commit a58dfcb421

View File

@ -572,6 +572,15 @@ private synchronized void refreshServiceAcls(Configuration configuration,
@Override
public String[] getGroupsForUser(String user) throws IOException {
String operation = "getGroupsForUser";
UserGroupInformation ugi;
try {
ugi = checkAcls(operation);
} catch (YarnException e) {
// The interface is from hadoop-common which does not accept YarnException
throw new IOException(e);
}
checkRMStatus(ugi.getShortUserName(), operation, "get groups for user");
return UserGroupInformation.createRemoteUser(user).getGroupNames();
}