org.springframework.yarn.boot.app.YarnContainerClusterOperations.getClusters()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(84)

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

YarnContainerClusterOperations.getClusters介绍

[英]Get a clusters info.
[中]获取群集信息。

代码示例

代码示例来源:origin: org.springframework.cloud/spring-cloud-deployer-yarn

public Collection<String> getClustersInfo(ApplicationId applicationId) {
  YarnContainerClusterOperations operations = buildClusterOperations(restTemplate, yarnClient, applicationId);
  YarnContainerClusterEndpointResource response = operations.getClusters();
  return response.getClusters();
}

代码示例来源:origin: org.springframework.data/spring-yarn-boot

private String doClustersInfo(RestTemplate restTemplate, YarnClient client, ApplicationId applicationId) {
  YarnContainerClusterOperations operations = buildClusterOperations(restTemplate, client, applicationId);
  YarnContainerClusterEndpointResource response = operations.getClusters();
  return ContainerClusterReport.clustersInfoReportBuilder()
      .add(ClustersInfoField.ID)
      .from(new ArrayList<String>(response.getClusters()))
      .build().toString();
}

相关文章