org.apache.hadoop.mapreduce.v2.api.protocolrecords.KillJobResponse Java Examples

The following examples show how to use org.apache.hadoop.mapreduce.v2.api.protocolrecords.KillJobResponse. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MRClientService.java    From hadoop with Apache License 2.0 6 votes vote down vote up
@SuppressWarnings("unchecked")
@Override
public KillJobResponse killJob(KillJobRequest request) 
  throws IOException {
  JobId jobId = request.getJobId();
  UserGroupInformation callerUGI = UserGroupInformation.getCurrentUser();
  String message = "Kill job " + jobId + " received from " + callerUGI
      + " at " + Server.getRemoteAddress();
  LOG.info(message);
  verifyAndGetJob(jobId, JobACL.MODIFY_JOB, false);
  appContext.getEventHandler().handle(
      new JobDiagnosticsUpdateEvent(jobId, message));
  appContext.getEventHandler().handle(
      new JobEvent(jobId, JobEventType.JOB_KILL));
  KillJobResponse response = 
    recordFactory.newRecordInstance(KillJobResponse.class);
  return response;
}
 
Example #2
Source File: MRClientService.java    From big-c with Apache License 2.0 6 votes vote down vote up
@SuppressWarnings("unchecked")
@Override
public KillJobResponse killJob(KillJobRequest request) 
  throws IOException {
  JobId jobId = request.getJobId();
  UserGroupInformation callerUGI = UserGroupInformation.getCurrentUser();
  String message = "Kill job " + jobId + " received from " + callerUGI
      + " at " + Server.getRemoteAddress();
  LOG.info(message);
  verifyAndGetJob(jobId, JobACL.MODIFY_JOB, false);
  appContext.getEventHandler().handle(
      new JobDiagnosticsUpdateEvent(jobId, message));
  appContext.getEventHandler().handle(
      new JobEvent(jobId, JobEventType.JOB_KILL));
  KillJobResponse response = 
    recordFactory.newRecordInstance(KillJobResponse.class);
  return response;
}
 
Example #3
Source File: NotRunningJob.java    From big-c with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  KillJobResponse resp =
    recordFactory.newRecordInstance(KillJobResponse.class);
  return resp;
}
 
Example #4
Source File: NotRunningJob.java    From tez with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  KillJobResponse resp =
    recordFactory.newRecordInstance(KillJobResponse.class);
  return resp;
}
 
Example #5
Source File: NotRunningJob.java    From incubator-tez with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  KillJobResponse resp =
    recordFactory.newRecordInstance(KillJobResponse.class);
  return resp;
}
 
Example #6
Source File: MRCommunicator.java    From jumbune with GNU Lesser General Public License v3.0 5 votes vote down vote up
/**
 * Kill the job, given the jobId
 * @param jobId
 * @return
 * @throws IOException
 */
public boolean killJob(JobId jobId) throws IOException{
	KillJobRequestProto proto = KillJobRequestProto.getDefaultInstance();
	KillJobRequest request = new KillJobRequestPBImpl(proto);
	request.setJobId(jobId);
	KillJobResponse killJobResponse = proxy.killJob(request);
	if(killJobResponse!=null){
		return true;
	}
	return false;
}
 
Example #7
Source File: MRClientProtocolPBClientImpl.java    From big-c with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  KillJobRequestProto requestProto = ((KillJobRequestPBImpl)request).getProto();
  try {
    return new KillJobResponsePBImpl(proxy.killJob(null, requestProto));
  } catch (ServiceException e) {
    throw unwrapAndThrowException(e);
  }
}
 
Example #8
Source File: MRClientProtocolPBServiceImpl.java    From big-c with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponseProto killJob(RpcController controller,
    KillJobRequestProto proto) throws ServiceException {
  KillJobRequest request = new KillJobRequestPBImpl(proto);
  try {
    KillJobResponse response = real.killJob(request);
    return ((KillJobResponsePBImpl)response).getProto();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
 
Example #9
Source File: MRClientProtocolPBClientImpl.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  KillJobRequestProto requestProto = ((KillJobRequestPBImpl)request).getProto();
  try {
    return new KillJobResponsePBImpl(proxy.killJob(null, requestProto));
  } catch (ServiceException e) {
    throw unwrapAndThrowException(e);
  }
}
 
Example #10
Source File: MRClientProtocolPBServiceImpl.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponseProto killJob(RpcController controller,
    KillJobRequestProto proto) throws ServiceException {
  KillJobRequest request = new KillJobRequestPBImpl(proto);
  try {
    KillJobResponse response = real.killJob(request);
    return ((KillJobResponsePBImpl)response).getProto();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
 
Example #11
Source File: NotRunningJob.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  KillJobResponse resp =
    recordFactory.newRecordInstance(KillJobResponse.class);
  return resp;
}
 
Example #12
Source File: HistoryClientService.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request) throws IOException {
  throw new IOException("Invalid operation on completed job");
}
 
Example #13
Source File: TestRPCFactories.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  return null;
}
 
Example #14
Source File: TestClientRedirect.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  return recordFactory.newRecordInstance(KillJobResponse.class);
}
 
Example #15
Source File: TestRPCFactories.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  return null;
}
 
Example #16
Source File: HistoryClientService.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request) throws IOException {
  throw new IOException("Invalid operation on completed job");
}
 
Example #17
Source File: TestClientRedirect.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public KillJobResponse killJob(KillJobRequest request)
    throws IOException {
  return recordFactory.newRecordInstance(KillJobResponse.class);
}
 
Example #18
Source File: MRClientProtocol.java    From big-c with Apache License 2.0 votes vote down vote up
public KillJobResponse killJob(KillJobRequest request) throws IOException; 
Example #19
Source File: MRClientProtocol.java    From hadoop with Apache License 2.0 votes vote down vote up
public KillJobResponse killJob(KillJobRequest request) throws IOException;