Addendum for YARN-5865. Retrospect updateApplicationPriority api to handle state store exception in align with YARN-5611

This commit is contained in:
Varun Saxena 2017-04-26 15:43:32 +05:30
parent ebcb575a12
commit c1f9f0529b
3 changed files with 3 additions and 2 deletions

View File

@ -88,7 +88,7 @@ public class TimelineServiceV1Publisher extends AbstractSystemMetricsPublisher {
ApplicationMetricsConstants.UNMANAGED_APPLICATION_ENTITY_INFO, ApplicationMetricsConstants.UNMANAGED_APPLICATION_ENTITY_INFO,
app.getApplicationSubmissionContext().getUnmanagedAM()); app.getApplicationSubmissionContext().getUnmanagedAM());
entityInfo.put(ApplicationMetricsConstants.APPLICATION_PRIORITY_INFO, entityInfo.put(ApplicationMetricsConstants.APPLICATION_PRIORITY_INFO,
app.getApplicationSubmissionContext().getPriority().getPriority()); app.getApplicationPriority().getPriority());
entityInfo.put(ApplicationMetricsConstants.AM_NODE_LABEL_EXPRESSION, entityInfo.put(ApplicationMetricsConstants.AM_NODE_LABEL_EXPRESSION,
app.getAmNodeLabelExpression()); app.getAmNodeLabelExpression());
entityInfo.put(ApplicationMetricsConstants.APP_NODE_LABEL_EXPRESSION, entityInfo.put(ApplicationMetricsConstants.APP_NODE_LABEL_EXPRESSION,

View File

@ -118,7 +118,7 @@ public class TimelineServiceV2Publisher extends AbstractSystemMetricsPublisher {
ApplicationMetricsConstants.UNMANAGED_APPLICATION_ENTITY_INFO, ApplicationMetricsConstants.UNMANAGED_APPLICATION_ENTITY_INFO,
app.getApplicationSubmissionContext().getUnmanagedAM()); app.getApplicationSubmissionContext().getUnmanagedAM());
entityInfo.put(ApplicationMetricsConstants.APPLICATION_PRIORITY_INFO, entityInfo.put(ApplicationMetricsConstants.APPLICATION_PRIORITY_INFO,
app.getApplicationSubmissionContext().getPriority().getPriority()); app.getApplicationPriority().getPriority());
entity.getConfigs().put( entity.getConfigs().put(
ApplicationMetricsConstants.AM_NODE_LABEL_EXPRESSION, ApplicationMetricsConstants.AM_NODE_LABEL_EXPRESSION,
app.getAmNodeLabelExpression()); app.getAmNodeLabelExpression());

View File

@ -372,6 +372,7 @@ public class TestSystemMetricsPublisherForV2 {
.thenReturn(Collections.singletonList("java -Xmx1024m")); .thenReturn(Collections.singletonList("java -Xmx1024m"));
when(appSubmissionContext.getAMContainerSpec()) when(appSubmissionContext.getAMContainerSpec())
.thenReturn(containerLaunchContext); .thenReturn(containerLaunchContext);
when(app.getApplicationPriority()).thenReturn(Priority.newInstance(10));
when(app.getApplicationSubmissionContext()) when(app.getApplicationSubmissionContext())
.thenReturn(appSubmissionContext); .thenReturn(appSubmissionContext);