瀏覽代碼

YARN-1266. Implemented PB service and client wrappers for ApplicationHistoryProtocol. Contributed by Mayank Bansal.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/YARN-321@1544391 13f79535-47bb-0310-9956-ffa450edef68
Vinod Kumar Vavilapalli 11 年之前
父節點
當前提交
45955e5fc1

+ 3 - 0
hadoop-yarn-project/CHANGES.txt

@@ -440,6 +440,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.1.1-beta - UNRELEASED
 
     YARN-948. Changed ResourceManager to validate the release container list

+ 1 - 1
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/ApplicationHistoryProtocol.java

@@ -202,7 +202,7 @@ public interface ApplicationHistoryProtocol {
    */
   @Public
   @Unstable
-  public GetContainerReportResponse getContainer(
+  public GetContainerReportResponse getContainerReport(
       GetContainerReportRequest request) throws YarnException, IOException;
 
   /**

+ 1 - 1
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-applicationhistoryservice/src/main/java/org/apache/hadoop/yarn/server/applicationhistoryservice/AHSClientService.java

@@ -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;