Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ public boolean run() throws IOException, YarnException {
// Memory ask has to be a multiple of min and less than max.
// Dump out information about cluster capability as seen by the resource manager
int maxMem = appResponse.getMaximumResourceCapability().getMemory();
LOG.info("Max mem capabililty of resources in this cluster " + maxMem);
LOG.info("Max mem capability of resources in this cluster " + maxMem);

// A resource ask cannot exceed the max.
if (amMemory > maxMem) {
Expand All @@ -499,7 +499,7 @@ public boolean run() throws IOException, YarnException {
}

int maxVCores = appResponse.getMaximumResourceCapability().getVirtualCores();
LOG.info("Max virtual cores capabililty of resources in this cluster " + maxVCores);
LOG.info("Max virtual cores capability of resources in this cluster " + maxVCores);

if (amVCores > maxVCores) {
LOG.info("AM virtual cores specified above max threshold of cluster. "
Expand Down