org.apache.hadoop.mapreduce.v2.proto.MRServiceProtos.GetTaskReportRequestProto Java Examples
The following examples show how to use
org.apache.hadoop.mapreduce.v2.proto.MRServiceProtos.GetTaskReportRequestProto.
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: MRClientProtocolPBServiceImpl.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetTaskReportResponseProto getTaskReport(RpcController controller, GetTaskReportRequestProto proto) throws ServiceException { GetTaskReportRequest request = new GetTaskReportRequestPBImpl(proto); try { GetTaskReportResponse response = real.getTaskReport(request); return ((GetTaskReportResponsePBImpl)response).getProto(); } catch (IOException e) { throw new ServiceException(e); } }
Example #2
Source File: MRClientProtocolPBClientImpl.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetTaskReportResponse getTaskReport(GetTaskReportRequest request) throws IOException { GetTaskReportRequestProto requestProto = ((GetTaskReportRequestPBImpl)request).getProto(); try { return new GetTaskReportResponsePBImpl(proxy.getTaskReport(null, requestProto)); } catch (ServiceException e) { throw unwrapAndThrowException(e); } }
Example #3
Source File: MRClientProtocolPBServiceImpl.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetTaskReportResponseProto getTaskReport(RpcController controller, GetTaskReportRequestProto proto) throws ServiceException { GetTaskReportRequest request = new GetTaskReportRequestPBImpl(proto); try { GetTaskReportResponse response = real.getTaskReport(request); return ((GetTaskReportResponsePBImpl)response).getProto(); } catch (IOException e) { throw new ServiceException(e); } }
Example #4
Source File: MRClientProtocolPBClientImpl.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetTaskReportResponse getTaskReport(GetTaskReportRequest request) throws IOException { GetTaskReportRequestProto requestProto = ((GetTaskReportRequestPBImpl)request).getProto(); try { return new GetTaskReportResponsePBImpl(proxy.getTaskReport(null, requestProto)); } catch (ServiceException e) { throw unwrapAndThrowException(e); } }
Example #5
Source File: MRCommunicator.java From jumbune with GNU Lesser General Public License v3.0 | 5 votes |
/** * Given the taskId details (JobId, suffix id and task type), it gives the TaskReport * @param jobId, the JobId instance * @param id, the suffix id as int * @param taskType, the task type * @return the Task Report * @throws IOException */ public TaskReport getTaskReport(JobId jobId, int id, TaskType taskType) throws IOException{ TaskId taskId = YarnCommunicatorUtil.getTaskId(jobId, id, taskType); GetTaskReportRequestProto proto = GetTaskReportRequestProto.getDefaultInstance(); GetTaskReportRequest getTaskReportRequest = new GetTaskReportRequestPBImpl(proto); getTaskReportRequest.setTaskId(taskId); GetTaskReportResponse taskReportResponse = proxy.getTaskReport(getTaskReportRequest); return taskReportResponse.getTaskReport(); }
Example #6
Source File: GetTaskReportRequestPBImpl.java From hadoop with Apache License 2.0 | 4 votes |
public GetTaskReportRequestPBImpl() { builder = GetTaskReportRequestProto.newBuilder(); }
Example #7
Source File: GetTaskReportRequestPBImpl.java From hadoop with Apache License 2.0 | 4 votes |
public GetTaskReportRequestPBImpl(GetTaskReportRequestProto proto) { this.proto = proto; viaProto = true; }
Example #8
Source File: GetTaskReportRequestPBImpl.java From hadoop with Apache License 2.0 | 4 votes |
public GetTaskReportRequestProto getProto() { mergeLocalToProto(); proto = viaProto ? proto : builder.build(); viaProto = true; return proto; }
Example #9
Source File: GetTaskReportRequestPBImpl.java From hadoop with Apache License 2.0 | 4 votes |
private void maybeInitBuilder() { if (viaProto || builder == null) { builder = GetTaskReportRequestProto.newBuilder(proto); } viaProto = false; }
Example #10
Source File: GetTaskReportRequestPBImpl.java From big-c with Apache License 2.0 | 4 votes |
public GetTaskReportRequestPBImpl() { builder = GetTaskReportRequestProto.newBuilder(); }
Example #11
Source File: GetTaskReportRequestPBImpl.java From big-c with Apache License 2.0 | 4 votes |
public GetTaskReportRequestPBImpl(GetTaskReportRequestProto proto) { this.proto = proto; viaProto = true; }
Example #12
Source File: GetTaskReportRequestPBImpl.java From big-c with Apache License 2.0 | 4 votes |
public GetTaskReportRequestProto getProto() { mergeLocalToProto(); proto = viaProto ? proto : builder.build(); viaProto = true; return proto; }
Example #13
Source File: GetTaskReportRequestPBImpl.java From big-c with Apache License 2.0 | 4 votes |
private void maybeInitBuilder() { if (viaProto || builder == null) { builder = GetTaskReportRequestProto.newBuilder(proto); } viaProto = false; }