org.apache.hadoop.mapreduce.v2.api.protocolrecords.KillJobRequest Java Examples
The following examples show how to use
org.apache.hadoop.mapreduce.v2.api.protocolrecords.KillJobRequest.
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 |
@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 |
@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 |
@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 |
@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 |
@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 |
/** * 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 |
@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 |
@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: ClientServiceDelegate.java From big-c with Apache License 2.0 | 5 votes |
public boolean killJob(JobID oldJobID) throws IOException { org.apache.hadoop.mapreduce.v2.api.records.JobId jobId = TypeConverter.toYarn(oldJobID); KillJobRequest killRequest = recordFactory.newRecordInstance(KillJobRequest.class); killRequest.setJobId(jobId); invoke("killJob", KillJobRequest.class, killRequest); return true; }
Example #10
Source File: MRClientProtocolPBClientImpl.java From hadoop with Apache License 2.0 | 5 votes |
@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 #11
Source File: MRClientProtocolPBServiceImpl.java From hadoop with Apache License 2.0 | 5 votes |
@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 #12
Source File: ClientServiceDelegate.java From hadoop with Apache License 2.0 | 5 votes |
public boolean killJob(JobID oldJobID) throws IOException { org.apache.hadoop.mapreduce.v2.api.records.JobId jobId = TypeConverter.toYarn(oldJobID); KillJobRequest killRequest = recordFactory.newRecordInstance(KillJobRequest.class); killRequest.setJobId(jobId); invoke("killJob", KillJobRequest.class, killRequest); return true; }
Example #13
Source File: NotRunningJob.java From hadoop with Apache License 2.0 | 5 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { KillJobResponse resp = recordFactory.newRecordInstance(KillJobResponse.class); return resp; }
Example #14
Source File: HistoryClientService.java From hadoop with Apache License 2.0 | 4 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { throw new IOException("Invalid operation on completed job"); }
Example #15
Source File: TestRPCFactories.java From hadoop with Apache License 2.0 | 4 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { return null; }
Example #16
Source File: TestClientRedirect.java From big-c with Apache License 2.0 | 4 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { return recordFactory.newRecordInstance(KillJobResponse.class); }
Example #17
Source File: TestRPCFactories.java From big-c with Apache License 2.0 | 4 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { return null; }
Example #18
Source File: HistoryClientService.java From big-c with Apache License 2.0 | 4 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { throw new IOException("Invalid operation on completed job"); }
Example #19
Source File: TestClientRedirect.java From hadoop with Apache License 2.0 | 4 votes |
@Override public KillJobResponse killJob(KillJobRequest request) throws IOException { return recordFactory.newRecordInstance(KillJobResponse.class); }
Example #20
Source File: MRClientProtocol.java From big-c with Apache License 2.0 | votes |
public KillJobResponse killJob(KillJobRequest request) throws IOException;
Example #21
Source File: MRClientProtocol.java From hadoop with Apache License 2.0 | votes |
public KillJobResponse killJob(KillJobRequest request) throws IOException;