mirror of https://github.com/apache/lucene.git
Fix resource leak in TestPolicyCloud (#1312)
This commit is contained in:
parent
fa6166f261
commit
4d2d052b7d
|
@ -145,34 +145,34 @@ public class TestPolicyCloud extends SolrCloudTestCase {
|
||||||
"}";
|
"}";
|
||||||
AutoScalingConfig config = new AutoScalingConfig((Map<String, Object>) Utils.fromJSONString(autoScaleJson));
|
AutoScalingConfig config = new AutoScalingConfig((Map<String, Object>) Utils.fromJSONString(autoScaleJson));
|
||||||
AtomicInteger count = new AtomicInteger(0);
|
AtomicInteger count = new AtomicInteger(0);
|
||||||
SolrCloudManager cloudManager = new SolrClientCloudManager(new ZkDistributedQueueFactory(cluster.getZkClient()), cluster.getSolrClient());
|
try (SolrCloudManager cloudManager = new SolrClientCloudManager(new ZkDistributedQueueFactory(cluster.getZkClient()), cluster.getSolrClient())) {
|
||||||
String nodeName = cloudManager.getClusterStateProvider().getLiveNodes().iterator().next();
|
String nodeName = cloudManager.getClusterStateProvider().getLiveNodes().iterator().next();
|
||||||
SolrClientNodeStateProvider nodeStateProvider = (SolrClientNodeStateProvider) cloudManager.getNodeStateProvider();
|
SolrClientNodeStateProvider nodeStateProvider = (SolrClientNodeStateProvider) cloudManager.getNodeStateProvider();
|
||||||
Map<String, Map<String, List<ReplicaInfo>>> result = nodeStateProvider.getReplicaInfo(nodeName, Collections.singleton("UPDATE./update.requests"));
|
Map<String, Map<String, List<ReplicaInfo>>> result = nodeStateProvider.getReplicaInfo(nodeName, Collections.singleton("UPDATE./update.requests"));
|
||||||
nodeStateProvider.forEachReplica(nodeName, replicaInfo -> {
|
nodeStateProvider.forEachReplica(nodeName, replicaInfo -> {
|
||||||
if (replicaInfo.getVariables().containsKey("UPDATE./update.requests")) count.incrementAndGet();
|
if (replicaInfo.getVariables().containsKey("UPDATE./update.requests")) count.incrementAndGet();
|
||||||
});
|
});
|
||||||
assertTrue(count.get() > 0);
|
assertTrue(count.get() > 0);
|
||||||
|
|
||||||
Policy.Session session = config.getPolicy().createSession(cloudManager);
|
Policy.Session session = config.getPolicy().createSession(cloudManager);
|
||||||
|
|
||||||
for (Row row : session.getSortedNodes()) {
|
for (Row row : session.getSortedNodes()) {
|
||||||
Object val = row.getVal(Type.TOTALDISK.tagName, null);
|
Object val = row.getVal(Type.TOTALDISK.tagName, null);
|
||||||
log.info("node: {} , totaldisk : {}, freedisk : {}", row.node, val, row.getVal("freedisk",null));
|
log.info("node: {} , totaldisk : {}, freedisk : {}", row.node, val, row.getVal("freedisk",null));
|
||||||
assertTrue(val != null);
|
assertTrue(val != null);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
count .set(0);
|
||||||
|
for (Row row : session.getSortedNodes()) {
|
||||||
|
row.collectionVsShardVsReplicas.forEach((c, shardVsReplicas) -> shardVsReplicas.forEach((s, replicaInfos) -> {
|
||||||
|
for (ReplicaInfo replicaInfo : replicaInfos) {
|
||||||
|
if (replicaInfo.getVariables().containsKey(Type.CORE_IDX.tagName)) count.incrementAndGet();
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
assertTrue(count.get() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
count .set(0);
|
|
||||||
for (Row row : session.getSortedNodes()) {
|
|
||||||
row.collectionVsShardVsReplicas.forEach((c, shardVsReplicas) -> shardVsReplicas.forEach((s, replicaInfos) -> {
|
|
||||||
for (ReplicaInfo replicaInfo : replicaInfos) {
|
|
||||||
if (replicaInfo.getVariables().containsKey(Type.CORE_IDX.tagName)) count.incrementAndGet();
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
assertTrue(count.get() > 0);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static CollectionStatePredicate expectAllReplicasOnSpecificNode
|
private static CollectionStatePredicate expectAllReplicasOnSpecificNode
|
||||||
|
|
Loading…
Reference in New Issue