YARN-4047. ClientRMService getApplications has high scheduler lock contention. Contributed by Jason Lowe
(cherry picked from commit 7a445fcfab
)
This commit is contained in:
parent
4a5fdb7c23
commit
703fa1b141
|
@ -714,6 +714,9 @@ Release 2.8.0 - UNRELEASED
|
|||
YARN-4005. Completed container whose app is finished is possibly not
|
||||
removed from NMStateStore. (Jun Gong via jianhe)
|
||||
|
||||
YARN-4047. ClientRMService getApplications has high scheduler lock contention.
|
||||
(Jason Lowe via jianhe)
|
||||
|
||||
Release 2.7.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -751,13 +751,9 @@ public class ClientRMService extends AbstractService implements
|
|||
RMApp application = appsIter.next();
|
||||
|
||||
// Check if current application falls under the specified scope
|
||||
boolean allowAccess = checkAccess(callerUGI, application.getUser(),
|
||||
ApplicationAccessType.VIEW_APP, application);
|
||||
if (scope == ApplicationsRequestScope.OWN &&
|
||||
!callerUGI.getUserName().equals(application.getUser())) {
|
||||
continue;
|
||||
} else if (scope == ApplicationsRequestScope.VIEWABLE && !allowAccess) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (applicationTypes != null && !applicationTypes.isEmpty()) {
|
||||
|
@ -806,6 +802,13 @@ public class ClientRMService extends AbstractService implements
|
|||
}
|
||||
}
|
||||
|
||||
// checkAccess can grab the scheduler lock so call it last
|
||||
boolean allowAccess = checkAccess(callerUGI, application.getUser(),
|
||||
ApplicationAccessType.VIEW_APP, application);
|
||||
if (scope == ApplicationsRequestScope.VIEWABLE && !allowAccess) {
|
||||
continue;
|
||||
}
|
||||
|
||||
reports.add(application.createAndGetApplicationReport(
|
||||
callerUGI.getUserName(), allowAccess));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue