org.apache.hadoop.yarn.api.ApplicationClientProtocol.getApplicationAttempts()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中org.apache.hadoop.yarn.api.ApplicationClientProtocol.getApplicationAttempts()方法的一些代码示例,展示了ApplicationClientProtocol.getApplicationAttempts()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ApplicationClientProtocol.getApplicationAttempts()方法的具体详情如下:
包路径:org.apache.hadoop.yarn.api.ApplicationClientProtocol
类名称:ApplicationClientProtocol
方法名:getApplicationAttempts

ApplicationClientProtocol.getApplicationAttempts介绍

暂无

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-yarn-server-router

@Override
public GetApplicationAttemptsResponse getApplicationAttempts(
  GetApplicationAttemptsRequest request) throws YarnException, IOException {
 return clientRMProxy.getApplicationAttempts(request);
}

代码示例来源:origin: org.apache.hadoop/hadoop-yarn-common

@Override
public GetApplicationAttemptsResponseProto getApplicationAttempts(
  RpcController controller, GetApplicationAttemptsRequestProto proto)
  throws ServiceException {
 GetApplicationAttemptsRequestPBImpl request =
   new GetApplicationAttemptsRequestPBImpl(proto);
 try {
  GetApplicationAttemptsResponse response =
    real.getApplicationAttempts(request);
  return ((GetApplicationAttemptsResponsePBImpl) response).getProto();
 } catch (YarnException e) {
  throw new ServiceException(e);
 } catch (IOException e) {
  throw new ServiceException(e);
 }
}

代码示例来源:origin: io.hops/hadoop-yarn-client

@Override
public List<ApplicationAttemptReport> getApplicationAttempts(
  ApplicationId appId) throws YarnException, IOException {
 try {
  GetApplicationAttemptsRequest request = Records
    .newRecord(GetApplicationAttemptsRequest.class);
  request.setApplicationId(appId);
  GetApplicationAttemptsResponse response = rmClient
    .getApplicationAttempts(request);
  return response.getApplicationAttemptList();
 } catch (YarnException e) {
  if (!historyServiceEnabled) {
   // Just throw it as usual if historyService is not enabled.
   throw e;
  }
  // Even if history-service is enabled, treat all exceptions still the same
  // except the following
  if (e.getClass() != ApplicationNotFoundException.class) {
   throw e;
  }
  return historyClient.getApplicationAttempts(appId);
 }
}

代码示例来源:origin: org.apache.hadoop/hadoop-yarn-client

@Override
public List<ApplicationAttemptReport> getApplicationAttempts(
  ApplicationId appId) throws YarnException, IOException {
 try {
  GetApplicationAttemptsRequest request = Records
    .newRecord(GetApplicationAttemptsRequest.class);
  request.setApplicationId(appId);
  GetApplicationAttemptsResponse response = rmClient
    .getApplicationAttempts(request);
  return response.getApplicationAttemptList();
 } catch (YarnException e) {
  if (!historyServiceEnabled) {
   // Just throw it as usual if historyService is not enabled.
   throw e;
  }
  // Even if history-service is enabled, treat all exceptions still the same
  // except the following
  if (e.getClass() != ApplicationNotFoundException.class) {
   throw e;
  }
  return historyClient.getApplicationAttempts(appId);
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-yarn-client

@Override
public List<ApplicationAttemptReport> getApplicationAttempts(
  ApplicationId appId) throws YarnException, IOException {
 try {
  GetApplicationAttemptsRequest request = Records
    .newRecord(GetApplicationAttemptsRequest.class);
  request.setApplicationId(appId);
  GetApplicationAttemptsResponse response = rmClient
    .getApplicationAttempts(request);
  return response.getApplicationAttemptList();
 } catch (YarnException e) {
  if (!historyServiceEnabled) {
   // Just throw it as usual if historyService is not enabled.
   throw e;
  }
  // Even if history-service is enabled, treat all exceptions still the same
  // except the following
  if (e.getClass() != ApplicationNotFoundException.class) {
   throw e;
  }
  return historyClient.getApplicationAttempts(appId);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-yarn-client

@Override
public List<ApplicationAttemptReport> getApplicationAttempts(
  ApplicationId appId) throws YarnException, IOException {
 try {
  GetApplicationAttemptsRequest request = Records
    .newRecord(GetApplicationAttemptsRequest.class);
  request.setApplicationId(appId);
  GetApplicationAttemptsResponse response = rmClient
    .getApplicationAttempts(request);
  return response.getApplicationAttemptList();
 } catch (YarnException e) {
  if (!historyServiceEnabled) {
   // Just throw it as usual if historyService is not enabled.
   throw e;
  }
  // Even if history-service is enabled, treat all exceptions still the same
  // except the following
  if (e.getClass() != ApplicationNotFoundException.class) {
   throw e;
  }
  return historyClient.getApplicationAttempts(appId);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-yarn-common

@Override
public GetApplicationAttemptsResponseProto getApplicationAttempts(
  RpcController controller, GetApplicationAttemptsRequestProto proto)
  throws ServiceException {
 GetApplicationAttemptsRequestPBImpl request =
   new GetApplicationAttemptsRequestPBImpl(proto);
 try {
  GetApplicationAttemptsResponse response =
    real.getApplicationAttempts(request);
  return ((GetApplicationAttemptsResponsePBImpl) response).getProto();
 } catch (YarnException e) {
  throw new ServiceException(e);
 } catch (IOException e) {
  throw new ServiceException(e);
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-yarn-common

@Override
public GetApplicationAttemptsResponseProto getApplicationAttempts(
  RpcController controller, GetApplicationAttemptsRequestProto proto)
  throws ServiceException {
 GetApplicationAttemptsRequestPBImpl request =
   new GetApplicationAttemptsRequestPBImpl(proto);
 try {
  GetApplicationAttemptsResponse response =
    real.getApplicationAttempts(request);
  return ((GetApplicationAttemptsResponsePBImpl) response).getProto();
 } catch (YarnException e) {
  throw new ServiceException(e);
 } catch (IOException e) {
  throw new ServiceException(e);
 }
}

相关文章

微信公众号

最新文章

更多

ApplicationClientProtocol类方法