YARN-4510. Fix SLS startup failure caused by NPE. (Bibin A Chundatt via wangda)

This commit is contained in:
Wangda Tan 2015-12-30 15:34:39 -08:00
parent 9a7d5f69ec
commit 6eefae1b33
3 changed files with 12 additions and 1 deletions

View File

@ -172,10 +172,11 @@ public void updateNodeHeartbeatResponseForContainersDecreasing(
// TODO Auto-generated method stub
}
@SuppressWarnings("unchecked")
@Override
public List<Container> pullNewlyIncreasedContainers() {
// TODO Auto-generated method stub
return null;
return Collections.EMPTY_LIST;
}
@Override

View File

@ -820,6 +820,14 @@ public void serviceInit(Configuration conf) throws Exception {
((AbstractYarnScheduler<SchedulerApplicationAttempt, SchedulerNode>)
scheduler).init(conf);
super.serviceInit(conf);
initScheduler(conf);
}
private synchronized void initScheduler(Configuration configuration) throws
IOException {
this.applications =
new ConcurrentHashMap<ApplicationId,
SchedulerApplication<SchedulerApplicationAttempt>>();
}
@SuppressWarnings("unchecked")

View File

@ -1205,6 +1205,8 @@ Release 2.7.3 - UNRELEASED
YARN-4315. NaN in Queue percentage for cluster apps page. (Bibin A Chundatt via wangda)
YARN-4510. Fix SLS startup failure caused by NPE. (Bibin A Chundatt via wangda)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES