YARN-3751. Fixed AppInfo to check if used resources are null. Contributed by Sunil G.
This commit is contained in:
parent
c59e745630
commit
dbc4f64937
|
@ -479,6 +479,9 @@ Release 2.8.0 - UNRELEASED
|
|||
YARN-3740. Fixed the typo in the configuration name:
|
||||
APPLICATION_HISTORY_PREFIX_MAX_APPS. (Xuan Gong via zjshen)
|
||||
|
||||
YARN-3751. Fixed AppInfo to check if used resources are null. (Sunil G via
|
||||
zjshen)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -86,12 +86,14 @@ public class AppInfo {
|
|||
elapsedTime = Times.elapsed(startedTime, finishedTime);
|
||||
finalAppStatus = app.getFinalApplicationStatus();
|
||||
if (app.getApplicationResourceUsageReport() != null) {
|
||||
runningContainers =
|
||||
app.getApplicationResourceUsageReport().getNumUsedContainers();
|
||||
allocatedCpuVcores = app.getApplicationResourceUsageReport()
|
||||
.getUsedResources().getVirtualCores();
|
||||
allocatedMemoryMB = app.getApplicationResourceUsageReport()
|
||||
.getUsedResources().getMemory();
|
||||
runningContainers = app.getApplicationResourceUsageReport()
|
||||
.getNumUsedContainers();
|
||||
if (app.getApplicationResourceUsageReport().getUsedResources() != null) {
|
||||
allocatedCpuVcores = app.getApplicationResourceUsageReport()
|
||||
.getUsedResources().getVirtualCores();
|
||||
allocatedMemoryMB = app.getApplicationResourceUsageReport()
|
||||
.getUsedResources().getMemory();
|
||||
}
|
||||
}
|
||||
progress = app.getProgress() * 100; // in percent
|
||||
if (app.getApplicationTags() != null && !app.getApplicationTags().isEmpty()) {
|
||||
|
|
Loading…
Reference in New Issue