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

The following examples show how to use org.apache.hadoop.mapreduce.v2.api.protocolrecords.KillTaskRequest. 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 KillTaskResponse killTask(KillTaskRequest request) 
  throws IOException {
  TaskId taskId = request.getTaskId();
  UserGroupInformation callerUGI = UserGroupInformation.getCurrentUser();
  String message = "Kill task " + taskId + " received from " + callerUGI
      + " at " + Server.getRemoteAddress();
  LOG.info(message);
  verifyAndGetTask(taskId, JobACL.MODIFY_JOB);
  appContext.getEventHandler().handle(
      new TaskEvent(taskId, TaskEventType.T_KILL));
  KillTaskResponse response = 
    recordFactory.newRecordInstance(KillTaskResponse.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 KillTaskResponse killTask(KillTaskRequest request) 
  throws IOException {
  TaskId taskId = request.getTaskId();
  UserGroupInformation callerUGI = UserGroupInformation.getCurrentUser();
  String message = "Kill task " + taskId + " received from " + callerUGI
      + " at " + Server.getRemoteAddress();
  LOG.info(message);
  verifyAndGetTask(taskId, JobACL.MODIFY_JOB);
  appContext.getEventHandler().handle(
      new TaskEvent(taskId, TaskEventType.T_KILL));
  KillTaskResponse response = 
    recordFactory.newRecordInstance(KillTaskResponse.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 KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  KillTaskResponse resp =
    recordFactory.newRecordInstance(KillTaskResponse.class);
  return resp;
}
 
Example #4
Source File: NotRunningJob.java    From tez with Apache License 2.0 5 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  KillTaskResponse resp =
    recordFactory.newRecordInstance(KillTaskResponse.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 KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  KillTaskResponse resp =
    recordFactory.newRecordInstance(KillTaskResponse.class);
  return resp;
}
 
Example #6
Source File: MRClientProtocolPBClientImpl.java    From big-c with Apache License 2.0 5 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  KillTaskRequestProto requestProto = ((KillTaskRequestPBImpl)request).getProto();
  try {
    return new KillTaskResponsePBImpl(proxy.killTask(null, requestProto));
  } catch (ServiceException e) {
    throw unwrapAndThrowException(e);
  }
}
 
Example #7
Source File: MRClientProtocolPBServiceImpl.java    From big-c with Apache License 2.0 5 votes vote down vote up
@Override
public KillTaskResponseProto killTask(RpcController controller,
    KillTaskRequestProto proto) throws ServiceException {
  KillTaskRequest request = new KillTaskRequestPBImpl(proto);
  try {
    KillTaskResponse response = real.killTask(request);
    return ((KillTaskResponsePBImpl)response).getProto();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
 
Example #8
Source File: MRClientProtocolPBClientImpl.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  KillTaskRequestProto requestProto = ((KillTaskRequestPBImpl)request).getProto();
  try {
    return new KillTaskResponsePBImpl(proxy.killTask(null, requestProto));
  } catch (ServiceException e) {
    throw unwrapAndThrowException(e);
  }
}
 
Example #9
Source File: MRClientProtocolPBServiceImpl.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public KillTaskResponseProto killTask(RpcController controller,
    KillTaskRequestProto proto) throws ServiceException {
  KillTaskRequest request = new KillTaskRequestPBImpl(proto);
  try {
    KillTaskResponse response = real.killTask(request);
    return ((KillTaskResponsePBImpl)response).getProto();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
 
Example #10
Source File: NotRunningJob.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  KillTaskResponse resp =
    recordFactory.newRecordInstance(KillTaskResponse.class);
  return resp;
}
 
Example #11
Source File: HistoryClientService.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  throw new IOException("Invalid operation on completed job");
}
 
Example #12
Source File: TestRPCFactories.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  return null;
}
 
Example #13
Source File: TestClientRedirect.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  return null;
}
 
Example #14
Source File: TestRPCFactories.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  return null;
}
 
Example #15
Source File: HistoryClientService.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  throw new IOException("Invalid operation on completed job");
}
 
Example #16
Source File: TestClientRedirect.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public KillTaskResponse killTask(KillTaskRequest request)
    throws IOException {
  return null;
}
 
Example #17
Source File: MRClientProtocol.java    From big-c with Apache License 2.0 votes vote down vote up
public KillTaskResponse killTask(KillTaskRequest request) throws IOException; 
Example #18
Source File: MRClientProtocol.java    From hadoop with Apache License 2.0 votes vote down vote up
public KillTaskResponse killTask(KillTaskRequest request) throws IOException;