YARN-10957. Using invokeConcurrent Overload with Collection in getClusterMetrics (#3439)
This commit is contained in:
parent
f5148ca542
commit
51bd528bd3
|
@ -664,11 +664,10 @@ public class FederationClientInterceptor
|
|||
federationFacade.getSubClusters(true);
|
||||
ClientMethod remoteMethod = new ClientMethod("getClusterMetrics",
|
||||
new Class[] {GetClusterMetricsRequest.class}, new Object[] {request});
|
||||
ArrayList<SubClusterId> clusterList = new ArrayList<>(subclusters.keySet());
|
||||
Map<SubClusterId, GetClusterMetricsResponse> clusterMetrics;
|
||||
|
||||
try {
|
||||
clusterMetrics = invokeConcurrent(clusterList, remoteMethod,
|
||||
clusterMetrics = invokeConcurrent(subclusters.keySet(), remoteMethod,
|
||||
GetClusterMetricsResponse.class);
|
||||
|
||||
} catch (Exception ex) {
|
||||
|
|
Loading…
Reference in New Issue