@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); } }
@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); } }
/** * 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(); }