YARN-4605. Spelling mistake in the help message of "yarn applicationattempt" command. Contributed by Weiwei Yang.
(cherry picked from commit 8f58f742ae
)
This commit is contained in:
parent
7f215ffdd5
commit
ddc22bbcb1
|
@ -1249,6 +1249,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
YARN-4608. Redundant code statement in WritingYarnApplications.
|
YARN-4608. Redundant code statement in WritingYarnApplications.
|
||||||
(Kai Sasaki via aajisaka)
|
(Kai Sasaki via aajisaka)
|
||||||
|
|
||||||
|
YARN-4605. Spelling mistake in the help message of "yarn applicationattempt"
|
||||||
|
command. (Weiwei Yang via aajisaka)
|
||||||
|
|
||||||
Release 2.7.3 - UNRELEASED
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -138,7 +138,7 @@ public class ApplicationCLI extends YarnCLI {
|
||||||
opts.addOption(STATUS_CMD, true,
|
opts.addOption(STATUS_CMD, true,
|
||||||
"Prints the status of the application attempt.");
|
"Prints the status of the application attempt.");
|
||||||
opts.addOption(LIST_CMD, true,
|
opts.addOption(LIST_CMD, true,
|
||||||
"List application attempts for aplication.");
|
"List application attempts for application.");
|
||||||
opts.addOption(FAIL_CMD, true, "Fails application attempt.");
|
opts.addOption(FAIL_CMD, true, "Fails application attempt.");
|
||||||
opts.addOption(HELP_CMD, false, "Displays help for all commands.");
|
opts.addOption(HELP_CMD, false, "Displays help for all commands.");
|
||||||
opts.getOption(STATUS_CMD).setArgName("Application Attempt ID");
|
opts.getOption(STATUS_CMD).setArgName("Application Attempt ID");
|
||||||
|
@ -712,7 +712,7 @@ public class ApplicationCLI extends YarnCLI {
|
||||||
throws YarnException, IOException {
|
throws YarnException, IOException {
|
||||||
ApplicationId appId = ConverterUtils.toApplicationId(applicationId);
|
ApplicationId appId = ConverterUtils.toApplicationId(applicationId);
|
||||||
Priority newAppPriority = Priority.newInstance(Integer.parseInt(priority));
|
Priority newAppPriority = Priority.newInstance(Integer.parseInt(priority));
|
||||||
sysout.println("Updating priority of an aplication " + applicationId);
|
sysout.println("Updating priority of an application " + applicationId);
|
||||||
Priority updateApplicationPriority =
|
Priority updateApplicationPriority =
|
||||||
client.updateApplicationPriority(appId, newAppPriority);
|
client.updateApplicationPriority(appId, newAppPriority);
|
||||||
if (newAppPriority.equals(updateApplicationPriority)) {
|
if (newAppPriority.equals(updateApplicationPriority)) {
|
||||||
|
|
|
@ -1721,7 +1721,7 @@ public class TestYarnCLI {
|
||||||
pw.println(" -fail <Application Attempt ID> Fails application attempt.");
|
pw.println(" -fail <Application Attempt ID> Fails application attempt.");
|
||||||
pw.println(" -help Displays help for all commands.");
|
pw.println(" -help Displays help for all commands.");
|
||||||
pw.println(" -list <Application ID> List application attempts for");
|
pw.println(" -list <Application ID> List application attempts for");
|
||||||
pw.println(" aplication.");
|
pw.println(" application.");
|
||||||
pw.println(" -status <Application Attempt ID> Prints the status of the application");
|
pw.println(" -status <Application Attempt ID> Prints the status of the application");
|
||||||
pw.println(" attempt.");
|
pw.println(" attempt.");
|
||||||
pw.close();
|
pw.close();
|
||||||
|
|
|
@ -438,7 +438,7 @@ public class ClientRMService extends AbstractService implements
|
||||||
response = GetApplicationAttemptsResponse.newInstance(listAttempts);
|
response = GetApplicationAttemptsResponse.newInstance(listAttempts);
|
||||||
} else {
|
} else {
|
||||||
throw new YarnException("User " + callerUGI.getShortUserName()
|
throw new YarnException("User " + callerUGI.getShortUserName()
|
||||||
+ " does not have privilage to see this aplication " + appId);
|
+ " does not have privilage to see this application " + appId);
|
||||||
}
|
}
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
@ -489,7 +489,7 @@ public class ClientRMService extends AbstractService implements
|
||||||
.createContainerReport());
|
.createContainerReport());
|
||||||
} else {
|
} else {
|
||||||
throw new YarnException("User " + callerUGI.getShortUserName()
|
throw new YarnException("User " + callerUGI.getShortUserName()
|
||||||
+ " does not have privilage to see this aplication " + appId);
|
+ " does not have privilage to see this application " + appId);
|
||||||
}
|
}
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
@ -542,7 +542,7 @@ public class ClientRMService extends AbstractService implements
|
||||||
response = GetContainersResponse.newInstance(listContainers);
|
response = GetContainersResponse.newInstance(listContainers);
|
||||||
} else {
|
} else {
|
||||||
throw new YarnException("User " + callerUGI.getShortUserName()
|
throw new YarnException("User " + callerUGI.getShortUserName()
|
||||||
+ " does not have privilage to see this aplication " + appId);
|
+ " does not have privilage to see this application " + appId);
|
||||||
}
|
}
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1338,10 +1338,10 @@ public class TestClientRMService {
|
||||||
|
|
||||||
appPriority = 11;
|
appPriority = 11;
|
||||||
ClientRMService rmService = rm.getClientRMService();
|
ClientRMService rmService = rm.getClientRMService();
|
||||||
testAplicationPriorityUpdation(rmService, app1, appPriority, maxPriority);
|
testApplicationPriorityUpdation(rmService, app1, appPriority, maxPriority);
|
||||||
|
|
||||||
appPriority = 9;
|
appPriority = 9;
|
||||||
testAplicationPriorityUpdation(rmService, app1, appPriority, appPriority);
|
testApplicationPriorityUpdation(rmService, app1, appPriority, appPriority);
|
||||||
|
|
||||||
rm.killApp(app1.getApplicationId());
|
rm.killApp(app1.getApplicationId());
|
||||||
rm.waitForState(app1.getApplicationId(), RMAppState.KILLED);
|
rm.waitForState(app1.getApplicationId(), RMAppState.KILLED);
|
||||||
|
@ -1370,7 +1370,7 @@ public class TestClientRMService {
|
||||||
rm.stop();
|
rm.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void testAplicationPriorityUpdation(ClientRMService rmService,
|
private void testApplicationPriorityUpdation(ClientRMService rmService,
|
||||||
RMApp app1, int tobeUpdatedPriority, int expected) throws YarnException,
|
RMApp app1, int tobeUpdatedPriority, int expected) throws YarnException,
|
||||||
IOException {
|
IOException {
|
||||||
UpdateApplicationPriorityRequest updateRequest =
|
UpdateApplicationPriorityRequest updateRequest =
|
||||||
|
|
Loading…
Reference in New Issue