org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetCountersRequest Java Examples
The following examples show how to use
org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetCountersRequest.
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: NotRunningJob.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { GetCountersResponse resp = recordFactory.newRecordInstance(GetCountersResponse.class); Counters counters = recordFactory.newRecordInstance(Counters.class); counters.addAllCounterGroups(new HashMap<String, CounterGroup>()); resp.setCounters(counters); return resp; }
Example #2
Source File: NotRunningJob.java From tez with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { GetCountersResponse resp = recordFactory.newRecordInstance(GetCountersResponse.class); Counters counters = recordFactory.newRecordInstance(Counters.class); counters.addAllCounterGroups(new HashMap<String, CounterGroup>()); resp.setCounters(counters); return resp; }
Example #3
Source File: NotRunningJob.java From incubator-tez with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { GetCountersResponse resp = recordFactory.newRecordInstance(GetCountersResponse.class); Counters counters = recordFactory.newRecordInstance(Counters.class); counters.addAllCounterGroups(new HashMap<String, CounterGroup>()); resp.setCounters(counters); return resp; }
Example #4
Source File: HistoryClientService.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { JobId jobId = request.getJobId(); Job job = verifyAndGetJob(jobId, true); GetCountersResponse response = recordFactory.newRecordInstance(GetCountersResponse.class); response.setCounters(TypeConverter.toYarn(job.getAllCounters())); return response; }
Example #5
Source File: MRClientProtocolPBClientImpl.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { GetCountersRequestProto requestProto = ((GetCountersRequestPBImpl)request).getProto(); try { return new GetCountersResponsePBImpl(proxy.getCounters(null, requestProto)); } catch (ServiceException e) { throw unwrapAndThrowException(e); } }
Example #6
Source File: MRClientProtocolPBServiceImpl.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponseProto getCounters(RpcController controller, GetCountersRequestProto proto) throws ServiceException { GetCountersRequest request = new GetCountersRequestPBImpl(proto); try { GetCountersResponse response = real.getCounters(request); return ((GetCountersResponsePBImpl)response).getProto(); } catch (IOException e) { throw new ServiceException(e); } }
Example #7
Source File: TestClientRedirect.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { JobId jobID = request.getJobId(); amContact = true; Counters counters = getMyCounters(); GetCountersResponse response = recordFactory .newRecordInstance(GetCountersResponse.class); response.setCounters(counters); return response; }
Example #8
Source File: TestClientRedirect.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { hsContact = true; Counters counters = getMyCounters(); GetCountersResponse response = recordFactory.newRecordInstance(GetCountersResponse.class); response.setCounters(counters); return response; }
Example #9
Source File: ClientServiceDelegate.java From big-c with Apache License 2.0 | 5 votes |
public org.apache.hadoop.mapreduce.Counters getJobCounters(JobID arg0) throws IOException, InterruptedException { org.apache.hadoop.mapreduce.v2.api.records.JobId jobID = TypeConverter.toYarn(arg0); GetCountersRequest request = recordFactory.newRecordInstance(GetCountersRequest.class); request.setJobId(jobID); Counters cnt = ((GetCountersResponse) invoke("getCounters", GetCountersRequest.class, request)).getCounters(); return TypeConverter.fromYarn(cnt); }
Example #10
Source File: MRClientService.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { JobId jobId = request.getJobId(); Job job = verifyAndGetJob(jobId, JobACL.VIEW_JOB, true); GetCountersResponse response = recordFactory.newRecordInstance(GetCountersResponse.class); response.setCounters(TypeConverter.toYarn(job.getAllCounters())); return response; }
Example #11
Source File: MRClientService.java From big-c with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { JobId jobId = request.getJobId(); Job job = verifyAndGetJob(jobId, JobACL.VIEW_JOB, true); GetCountersResponse response = recordFactory.newRecordInstance(GetCountersResponse.class); response.setCounters(TypeConverter.toYarn(job.getAllCounters())); return response; }
Example #12
Source File: HistoryClientService.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { JobId jobId = request.getJobId(); Job job = verifyAndGetJob(jobId, true); GetCountersResponse response = recordFactory.newRecordInstance(GetCountersResponse.class); response.setCounters(TypeConverter.toYarn(job.getAllCounters())); return response; }
Example #13
Source File: MRClientProtocolPBClientImpl.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { GetCountersRequestProto requestProto = ((GetCountersRequestPBImpl)request).getProto(); try { return new GetCountersResponsePBImpl(proxy.getCounters(null, requestProto)); } catch (ServiceException e) { throw unwrapAndThrowException(e); } }
Example #14
Source File: MRClientProtocolPBServiceImpl.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponseProto getCounters(RpcController controller, GetCountersRequestProto proto) throws ServiceException { GetCountersRequest request = new GetCountersRequestPBImpl(proto); try { GetCountersResponse response = real.getCounters(request); return ((GetCountersResponsePBImpl)response).getProto(); } catch (IOException e) { throw new ServiceException(e); } }
Example #15
Source File: TestClientRedirect.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { JobId jobID = request.getJobId(); amContact = true; Counters counters = getMyCounters(); GetCountersResponse response = recordFactory .newRecordInstance(GetCountersResponse.class); response.setCounters(counters); return response; }
Example #16
Source File: TestClientRedirect.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { hsContact = true; Counters counters = getMyCounters(); GetCountersResponse response = recordFactory.newRecordInstance(GetCountersResponse.class); response.setCounters(counters); return response; }
Example #17
Source File: ClientServiceDelegate.java From hadoop with Apache License 2.0 | 5 votes |
public org.apache.hadoop.mapreduce.Counters getJobCounters(JobID arg0) throws IOException, InterruptedException { org.apache.hadoop.mapreduce.v2.api.records.JobId jobID = TypeConverter.toYarn(arg0); GetCountersRequest request = recordFactory.newRecordInstance(GetCountersRequest.class); request.setJobId(jobID); Counters cnt = ((GetCountersResponse) invoke("getCounters", GetCountersRequest.class, request)).getCounters(); return TypeConverter.fromYarn(cnt); }
Example #18
Source File: NotRunningJob.java From hadoop with Apache License 2.0 | 5 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { GetCountersResponse resp = recordFactory.newRecordInstance(GetCountersResponse.class); Counters counters = recordFactory.newRecordInstance(Counters.class); counters.addAllCounterGroups(new HashMap<String, CounterGroup>()); resp.setCounters(counters); return resp; }
Example #19
Source File: TestRPCFactories.java From hadoop with Apache License 2.0 | 4 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { return null; }
Example #20
Source File: TestClientServiceDelegate.java From big-c with Apache License 2.0 | 4 votes |
private GetCountersRequest getCountersRequest() { GetCountersRequest request = Records.newRecord(GetCountersRequest.class); request.setJobId(jobId); return request; }
Example #21
Source File: TestRPCFactories.java From big-c with Apache License 2.0 | 4 votes |
@Override public GetCountersResponse getCounters(GetCountersRequest request) throws IOException { return null; }
Example #22
Source File: TestClientServiceDelegate.java From hadoop with Apache License 2.0 | 4 votes |
private GetCountersRequest getCountersRequest() { GetCountersRequest request = Records.newRecord(GetCountersRequest.class); request.setJobId(jobId); return request; }
Example #23
Source File: MRClientProtocol.java From hadoop with Apache License 2.0 | votes |
public GetCountersResponse getCounters(GetCountersRequest request) throws IOException;
Example #24
Source File: MRClientProtocol.java From big-c with Apache License 2.0 | votes |
public GetCountersResponse getCounters(GetCountersRequest request) throws IOException;