YARN-1266. Implemented PB service and client wrappers for ApplicationHistoryProtocol. Contributed by Mayank Bansal.
svn merge --ignore-ancestry -c 1556739 ../YARN-321 git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1562193 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0f87e4928b
commit
cee917ace9
|
@ -496,6 +496,9 @@ Branch YARN-321: Generic ApplicationHistoryService
|
|||
YARN-953. Changed ResourceManager to start writing history data. (Zhijie Shen
|
||||
via vinodkv)
|
||||
|
||||
YARN-1266. Implemented PB service and client wrappers for
|
||||
ApplicationHistoryProtocol. (Mayank Bansal via vinodkv)
|
||||
|
||||
Release 2.2.0 - 2013-10-13
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -202,7 +202,7 @@ public interface ApplicationHistoryProtocol {
|
|||
*/
|
||||
@Public
|
||||
@Unstable
|
||||
public GetContainerReportResponse getContainer(
|
||||
public GetContainerReportResponse getContainerReport(
|
||||
GetContainerReportRequest request) throws YarnException, IOException;
|
||||
|
||||
/**
|
||||
|
|
|
@ -100,7 +100,7 @@ public class AHSClientService extends AbstractService implements
|
|||
}
|
||||
|
||||
@Override
|
||||
public GetContainerReportResponse getContainer(
|
||||
public GetContainerReportResponse getContainerReport(
|
||||
GetContainerReportRequest request) throws YarnException, IOException {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue