YARN-7671. Improve Diagonstic message for stop yarn native service. Contributed by Chandni Singh
This commit is contained in:
parent
3d65dbe032
commit
c05b84703b
|
@ -22,6 +22,7 @@ import org.apache.hadoop.conf.Configuration;
|
|||
import org.apache.hadoop.fs.CommonConfigurationKeysPublic;
|
||||
import org.apache.hadoop.ipc.Server;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.service.AbstractService;
|
||||
import org.apache.hadoop.util.ExitUtil;
|
||||
import org.apache.hadoop.yarn.api.ApplicationConstants;
|
||||
|
@ -117,7 +118,10 @@ public class ClientAMService extends AbstractService
|
|||
@Override
|
||||
public StopResponseProto stop(StopRequestProto requestProto)
|
||||
throws IOException, YarnException {
|
||||
LOG.info("Stop the service.");
|
||||
LOG.info("Stop the service by {}", UserGroupInformation.getCurrentUser());
|
||||
context.scheduler.getDiagnostics()
|
||||
.append("Stopped by user " + UserGroupInformation.getCurrentUser());
|
||||
|
||||
// Stop the service in 2 seconds delay to make sure this rpc call is completed.
|
||||
// shutdown hook will be executed which will stop AM gracefully.
|
||||
Thread thread = new Thread() {
|
||||
|
|
|
@ -262,13 +262,10 @@ public class ServiceScheduler extends CompositeService {
|
|||
serviceTimelinePublisher
|
||||
.serviceAttemptUnregistered(context, diagnostics.toString());
|
||||
}
|
||||
String msg = diagnostics.toString()
|
||||
+ "Navigate to the failed component for more details.";
|
||||
amRMClient
|
||||
.unregisterApplicationMaster(FinalApplicationStatus.ENDED, msg, "");
|
||||
LOG.info("Service " + app.getName()
|
||||
+ " unregistered with RM, with attemptId = " + context.attemptId
|
||||
+ ", diagnostics = " + diagnostics);
|
||||
amRMClient.unregisterApplicationMaster(FinalApplicationStatus.ENDED,
|
||||
diagnostics.toString(), "");
|
||||
LOG.info("Service {} unregistered with RM, with attemptId = {} " +
|
||||
", diagnostics = {} ", app.getName(), context.attemptId, diagnostics);
|
||||
super.serviceStop();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue