diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 59da6060a06..d37120f252f 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -153,6 +153,8 @@ Improvements * SOLR-13728: If a partial update (aka atomic update) is attempted on a document that has child docs, then ensure the schema supports it (_root_ stored/docValues) by throwing an exception. (David Smiley) +* SOLR-13742: Allow optional redaction of data saved by 'bin/solr autoscaling -save'. (ab) + Bug Fixes ---------------------- diff --git a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SimUtils.java b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SimUtils.java index acfaa0f17bb..1c5d606e9b9 100644 --- a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SimUtils.java +++ b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SimUtils.java @@ -16,6 +16,9 @@ */ package org.apache.solr.cloud.autoscaling.sim; +import java.lang.invoke.MethodHandles; +import java.net.MalformedURLException; +import java.net.URL; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; @@ -25,11 +28,13 @@ import java.util.List; import java.util.Map; import java.util.Set; import java.util.TreeMap; +import java.util.TreeSet; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.apache.solr.client.solrj.cloud.SolrCloudManager; import org.apache.solr.client.solrj.cloud.autoscaling.AutoScalingConfig; +import org.apache.solr.client.solrj.cloud.autoscaling.Cell; import org.apache.solr.client.solrj.cloud.autoscaling.Policy; import org.apache.solr.client.solrj.cloud.autoscaling.ReplicaInfo; import org.apache.solr.client.solrj.cloud.autoscaling.Row; @@ -41,11 +46,17 @@ import org.apache.solr.common.cloud.Replica; import org.apache.solr.common.params.CollectionAdminParams; import org.apache.solr.common.params.CoreAdminParams; import org.apache.solr.common.params.ModifiableSolrParams; +import org.apache.solr.common.util.Utils; +import org.apache.solr.util.RedactionUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * Various utility methods useful for autoscaling simulations and snapshots. */ public class SimUtils { + private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); + public static final Set COMMON_REPLICA_TAGS = new HashSet<>(Arrays.asList( Variable.Type.CORE_IDX.metricsAttribute, @@ -231,10 +242,13 @@ public class SimUtils { for (Row row : rows) { Map nodeStat = nodeStats.computeIfAbsent(row.node, n -> new LinkedHashMap<>()); nodeStat.put("isLive", row.isLive()); - nodeStat.put("freedisk", row.getVal("freedisk", 0)); - nodeStat.put("totaldisk", row.getVal("totaldisk", 0)); + for (Cell cell : row.getCells()) { + nodeStat.put(cell.getName(), cell.getValue()); + } +// nodeStat.put("freedisk", row.getVal("freedisk", 0)); +// nodeStat.put("totaldisk", row.getVal("totaldisk", 0)); int cores = ((Number)row.getVal("cores", 0)).intValue(); - nodeStat.put("cores", cores); +// nodeStat.put("cores", cores); coreStats.computeIfAbsent(cores, num -> new AtomicInteger()).incrementAndGet(); Map>> collReplicas = new TreeMap<>(); // check consistency @@ -351,4 +365,32 @@ public class SimUtils { params.add(CoreAdminParams.ACTION, a); return params; } + + /** + * Prepare collection and node / host names for redaction. + * @param clusterState cluster state + */ + public static RedactionUtils.RedactionContext getRedactionContext(ClusterState clusterState) { + RedactionUtils.RedactionContext ctx = new RedactionUtils.RedactionContext(); + TreeSet names = new TreeSet<>(clusterState.getLiveNodes()); + for (String nodeName : names) { + String urlString = Utils.getBaseUrlForNodeName(nodeName, "http"); + try { + URL u = new URL(urlString); + // protocol format + String hostPort = u.getHost() + ":" + u.getPort(); + ctx.addName(u.getHost() + ":" + u.getPort(), RedactionUtils.NODE_REDACTION_PREFIX); + // node name format + ctx.addEquivalentName(hostPort, u.getHost() + "_" + u.getPort() + "_", RedactionUtils.NODE_REDACTION_PREFIX); + } catch (MalformedURLException e) { + log.warn("Invalid URL for node name " + nodeName + ", replacing including protocol and path", e); + ctx.addName(urlString, RedactionUtils.NODE_REDACTION_PREFIX); + ctx.addEquivalentName(urlString, Utils.getBaseUrlForNodeName(nodeName, "https"), RedactionUtils.NODE_REDACTION_PREFIX); + } + } + names.clear(); + names.addAll(clusterState.getCollectionStates().keySet()); + names.forEach(n -> ctx.addName(n, RedactionUtils.COLL_REDACTION_PREFIX)); + return ctx; + } } diff --git a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotCloudManager.java b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotCloudManager.java index a0a20fda65b..c821b57c744 100644 --- a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotCloudManager.java +++ b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotCloudManager.java @@ -46,11 +46,13 @@ import org.apache.solr.client.solrj.cloud.autoscaling.ReplicaInfo; import org.apache.solr.client.solrj.cloud.autoscaling.Suggester; import org.apache.solr.client.solrj.impl.ClusterStateProvider; import org.apache.solr.client.solrj.request.V2Request; +import org.apache.solr.common.cloud.ClusterState; import org.apache.solr.common.params.CollectionAdminParams; import org.apache.solr.common.params.SolrParams; import org.apache.solr.common.util.ObjectCache; import org.apache.solr.common.util.TimeSource; import org.apache.solr.common.util.Utils; +import org.apache.solr.util.RedactionUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -71,8 +73,9 @@ public class SnapshotCloudManager implements SolrCloudManager { public static final String DISTRIB_STATE_KEY = "distribState"; public static final String AUTOSCALING_STATE_KEY = "autoscalingState"; public static final String STATISTICS_STATE_KEY = "statistics"; + public static final String AUTOSCALING_JSON_KEY = "autoscaling"; - private static final List REQUIRED_KEYS = Arrays.asList( + public static final List REQUIRED_KEYS = Arrays.asList( MANAGER_STATE_KEY, CLUSTER_STATE_KEY, NODE_STATE_KEY, @@ -93,16 +96,25 @@ public class SnapshotCloudManager implements SolrCloudManager { (Map)snapshot.getOrDefault(MANAGER_STATE_KEY, Collections.emptyMap()), (Map)snapshot.getOrDefault(CLUSTER_STATE_KEY, Collections.emptyMap()), (Map)snapshot.getOrDefault(NODE_STATE_KEY, Collections.emptyMap()), - (Map)snapshot.getOrDefault(DISTRIB_STATE_KEY, Collections.emptyMap()) + (Map)snapshot.getOrDefault(DISTRIB_STATE_KEY, Collections.emptyMap()), + (Map)snapshot.getOrDefault(AUTOSCALING_JSON_KEY, Collections.emptyMap()) ); } - public void saveSnapshot(File targetDir, boolean withAutoscaling) throws Exception { - Map snapshot = getSnapshot(withAutoscaling); + public void saveSnapshot(File targetDir, boolean withAutoscaling, boolean redact) throws Exception { + Map snapshot = getSnapshot(withAutoscaling, redact); + ClusterState clusterState = getClusterStateProvider().getClusterState(); + RedactionUtils.RedactionContext ctx = SimUtils.getRedactionContext(clusterState); targetDir.mkdirs(); for (Map.Entry e : snapshot.entrySet()) { FileOutputStream out = new FileOutputStream(new File(targetDir, e.getKey() + ".json")); - IOUtils.write(Utils.toJSON(e.getValue()), out); + if (redact) { + String data = Utils.toJSONString(e.getValue()); + data = RedactionUtils.redactNames(ctx.getRedactions(), data); + IOUtils.write(data.getBytes("UTF-8"), out); + } else { + IOUtils.write(Utils.toJSON(e.getValue()), out); + } out.flush(); out.close(); } @@ -116,15 +128,19 @@ public class SnapshotCloudManager implements SolrCloudManager { throw new Exception("Source path is not a directory: " + sourceDir); } Map snapshot = new HashMap<>(); + List allKeys = new ArrayList<>(REQUIRED_KEYS); + allKeys.add(AUTOSCALING_JSON_KEY); int validData = 0; - for (String key : REQUIRED_KEYS) { + for (String key : allKeys) { File src = new File(sourceDir, key + ".json"); if (src.exists()) { InputStream is = new FileInputStream(src); Map data = (Map)Utils.fromJSON(is); is.close(); snapshot.put(key, data); - validData++; + if (REQUIRED_KEYS.contains(key)) { + validData++; + } } } if (validData < REQUIRED_KEYS.size()) { @@ -134,7 +150,7 @@ public class SnapshotCloudManager implements SolrCloudManager { } private void init(Map managerState, Map clusterState, Map nodeState, - Map distribState) throws Exception { + Map distribState, Map autoscalingJson) throws Exception { Objects.requireNonNull(managerState); Objects.requireNonNull(clusterState); Objects.requireNonNull(nodeState); @@ -142,20 +158,24 @@ public class SnapshotCloudManager implements SolrCloudManager { this.timeSource = TimeSource.get((String)managerState.getOrDefault("timeSource", "simTime:50")); this.clusterStateProvider = new SnapshotClusterStateProvider(clusterState); this.nodeStateProvider = new SnapshotNodeStateProvider(nodeState); - this.distribStateManager = new SnapshotDistribStateManager(distribState); + if (autoscalingJson == null || autoscalingJson.isEmpty()) { + this.distribStateManager = new SnapshotDistribStateManager(distribState); + } else { + this.distribStateManager = new SnapshotDistribStateManager(distribState, new AutoScalingConfig(autoscalingJson)); + } SimUtils.checkConsistency(this, null); } - public Map getSnapshot(boolean withAutoscaling) throws Exception { + public Map getSnapshot(boolean withAutoscaling, boolean redact) throws Exception { Map snapshot = new LinkedHashMap<>(4); Map managerState = new HashMap<>(); managerState.put("timeSource", timeSource.toString()); snapshot.put(MANAGER_STATE_KEY, managerState); - + RedactionUtils.RedactionContext ctx = redact ? SimUtils.getRedactionContext(clusterStateProvider.getClusterState()) : null; snapshot.put(CLUSTER_STATE_KEY, clusterStateProvider.getSnapshot()); snapshot.put(NODE_STATE_KEY, nodeStateProvider.getSnapshot()); - snapshot.put(DISTRIB_STATE_KEY, distribStateManager.getSnapshot()); + snapshot.put(DISTRIB_STATE_KEY, distribStateManager.getSnapshot(ctx)); if (withAutoscaling) { AutoScalingConfig config = distribStateManager.getAutoScalingConfig(); Policy.Session session = config.getPolicy().createSession(this); diff --git a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotDistribStateManager.java b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotDistribStateManager.java index 62b6936276b..10b78587900 100644 --- a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotDistribStateManager.java +++ b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotDistribStateManager.java @@ -18,11 +18,15 @@ package org.apache.solr.cloud.autoscaling.sim; import java.io.IOException; import java.lang.invoke.MethodHandles; +import java.nio.charset.Charset; import java.util.HashMap; +import java.util.HashSet; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.NoSuchElementException; +import java.util.Set; +import java.util.regex.Pattern; import java.util.stream.Collectors; import org.apache.solr.client.solrj.cloud.DistribStateManager; @@ -35,6 +39,7 @@ import org.apache.solr.common.cloud.ZkStateReader; import org.apache.solr.common.params.AutoScalingParams; import org.apache.solr.common.util.Base64; import org.apache.solr.common.util.Utils; +import org.apache.solr.util.RedactionUtils; import org.apache.zookeeper.CreateMode; import org.apache.zookeeper.KeeperException; import org.apache.zookeeper.Op; @@ -73,6 +78,14 @@ public class SnapshotDistribStateManager implements DistribStateManager { * @param snapshot previous snapshot created using this class. */ public SnapshotDistribStateManager(Map snapshot) { + this(snapshot, null); + } + /** + * Populate this instance from a previously generated snapshot. + * @param snapshot previous snapshot created using this class. + * @param config optional config to override the one from snapshot, may be null + */ + public SnapshotDistribStateManager(Map snapshot, AutoScalingConfig config) { snapshot.forEach((path, value) -> { Map map = (Map)value; Number version = (Number)map.getOrDefault("version", 0); @@ -85,16 +98,34 @@ public class SnapshotDistribStateManager implements DistribStateManager { } dataMap.put(path, new VersionedData(version.intValue(), bytes, mode, owner)); }); + if (config != null) { // overwrite existing + VersionedData vd = new VersionedData(config.getZkVersion(), Utils.toJSON(config), CreateMode.PERSISTENT, "0"); + dataMap.put(ZkStateReader.SOLR_AUTOSCALING_CONF_PATH, vd); + } log.debug("- loaded snapshot of {} resources", dataMap.size()); } + // content of these nodes is a UTF-8 String and it needs to be redacted + private static final Set REDACTED = new HashSet<>() {{ + add(Pattern.compile("/aliases\\.json")); + add(Pattern.compile("/autoscaling\\.json")); + add(Pattern.compile("/clusterstate\\.json")); + add(Pattern.compile("/collections/.*?/state\\.json")); + add(Pattern.compile("/collections/.*?/leaders/shard.*?/leader")); + add(Pattern.compile("/overseer_elect/leader")); + }}; /** * Create a snapshot of all content in this instance. */ - public Map getSnapshot() { + public Map getSnapshot(RedactionUtils.RedactionContext ctx) { Map snapshot = new LinkedHashMap<>(); dataMap.forEach((path, vd) -> { Map data = new HashMap<>(); + if (vd.getData() != null && ctx != null && REDACTED.stream().anyMatch(p -> p.matcher(path).matches())) { + String str = new String(vd.getData(), Charset.forName("UTF-8")); + str = RedactionUtils.redactNames(ctx.getRedactions(), str); + vd = new VersionedData(vd.getVersion(), str.getBytes(Charset.forName("UTF-8")), vd.getMode(), vd.getOwner()); + } vd.toMap(data); snapshot.put(path, data); }); diff --git a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotNodeStateProvider.java b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotNodeStateProvider.java index 8d22dbb4aab..5a49635ab65 100644 --- a/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotNodeStateProvider.java +++ b/solr/core/src/java/org/apache/solr/cloud/autoscaling/sim/SnapshotNodeStateProvider.java @@ -158,12 +158,26 @@ public class SnapshotNodeStateProvider implements NodeStateProvider { @Override public Map getNodeValues(String node, Collection tags) { - return nodeValues.getOrDefault(node, Collections.emptyMap()); + return new LinkedHashMap<>(nodeValues.getOrDefault(node, Collections.emptyMap())); } @Override public Map>> getReplicaInfo(String node, Collection keys) { - return replicaInfos.getOrDefault(node, Collections.emptyMap()); + Map>> result = new LinkedHashMap<>(); + Map>> infos = replicaInfos.getOrDefault(node, Collections.emptyMap()); + // deep copy + infos.forEach((coll, shards) -> { + shards.forEach((shard, replicas) -> { + replicas.forEach(ri -> { + List myReplicas = result + .computeIfAbsent(coll, c -> new LinkedHashMap<>()) + .computeIfAbsent(shard, s -> new ArrayList<>()); + ReplicaInfo myReplica = (ReplicaInfo)ri.clone(); + myReplicas.add(myReplica); + }); + }); + }); + return result; } public ReplicaInfo getReplicaInfo(String collection, String coreNode) { @@ -171,7 +185,7 @@ public class SnapshotNodeStateProvider implements NodeStateProvider { for (List perShard : perNode.getOrDefault(collection, Collections.emptyMap()).values()) { for (ReplicaInfo ri : perShard) { if (ri.getName().equals(coreNode)) { - return ri; + return (ReplicaInfo)ri.clone(); } } } diff --git a/solr/core/src/java/org/apache/solr/util/RedactionUtils.java b/solr/core/src/java/org/apache/solr/util/RedactionUtils.java index 2661a289c93..56909f40706 100644 --- a/solr/core/src/java/org/apache/solr/util/RedactionUtils.java +++ b/solr/core/src/java/org/apache/solr/util/RedactionUtils.java @@ -17,16 +17,20 @@ package org.apache.solr.util; -import java.util.Collection; +import java.util.Comparator; +import java.util.HashMap; import java.util.HashSet; +import java.util.Map; import java.util.Set; -import java.util.TreeSet; +import java.util.TreeMap; import java.util.regex.Pattern; public class RedactionUtils { public static final String SOLR_REDACTION_SYSTEM_PATTERN_PROP = "solr.redaction.system.pattern"; private static Pattern pattern = Pattern.compile(System.getProperty(SOLR_REDACTION_SYSTEM_PATTERN_PROP, ".*password.*"), Pattern.CASE_INSENSITIVE); private static final String REDACT_STRING = "--REDACTED--"; + public static final String NODE_REDACTION_PREFIX = "N_"; + public static final String COLL_REDACTION_PREFIX = "COLL_"; private static boolean redactSystemProperty = Boolean.parseBoolean(System.getProperty("solr.redaction.system.enabled", "true")); @@ -52,27 +56,72 @@ public class RedactionUtils { } /** - * Replace actual names found in a string with meaningless randomized names. - * @param names actual names - * @param redactionPrefix prefix to use for redacted names - * @param data string to redact - * @return redacted string where all actual names have been replaced. + * A helper class to build unique mappings from original to redacted names. */ - public static String redactNames(Collection names, String redactionPrefix, String data) { - Set uniqueNames = new TreeSet<>(names); - Set uniqueCode = new HashSet<>(); - // minimal(ish) hash - int codeShift = 0; - int codeSpace = names.size(); - for (String name : uniqueNames) { + public static final class RedactionContext { + private Map redactions = new HashMap<>(); + Map> uniqueCodes = new HashMap<>(); + // minimal(ish) hash per prefix + Map codeSpaces = new HashMap<>(); + + /** + * Add a name to be redacted. + * @param name original name + * @param redactionPrefix prefix for the redacted name + */ + public void addName(String name, String redactionPrefix) { + if (redactions.containsKey(name)) { + return; + } + int codeSpace = codeSpaces.computeIfAbsent(redactionPrefix, p -> 4); int code = Math.abs(name.hashCode() % codeSpace); + Set uniqueCode = uniqueCodes.computeIfAbsent(redactionPrefix, p -> new HashSet<>()); while (uniqueCode.contains(code)) { - codeShift++; - codeSpace = names.size() << codeShift; + codeSpace = codeSpace << 1; + codeSpaces.put(redactionPrefix, codeSpace); code = Math.abs(name.hashCode() % codeSpace); } uniqueCode.add(code); - data = data.replaceAll("\\Q" + name + "\\E", redactionPrefix + Integer.toString(code, Character.MAX_RADIX)); + redactions.put(name, redactionPrefix + Integer.toString(code, Character.MAX_RADIX)); + } + + /** + * Add a name that needs to be mapped to the same redacted format as another one. + * @param original original name already mapped (will be added automatically if missing) + * @param equivalent another name that needs to be mapped to the same redacted name + * @param redactionPrefix prefix for the redacted name + */ + public void addEquivalentName(String original, String equivalent, String redactionPrefix) { + if (!redactions.containsKey(original)) { + addName(original, redactionPrefix); + } + String redaction = redactions.get(original); + redactions.put(equivalent, redaction); + } + + /** + * Get a map of original to redacted names. + */ + public Map getRedactions() { + return redactions; + } + } + + /** + * Replace actual names found in a string with redacted names. + * @param redactions a map of original to redacted names + * @param data string to redact + * @return redacted string where all actual names have been replaced. + */ + public static String redactNames(Map redactions, String data) { + // replace the longest first to avoid partial replacements + Map sorted = new TreeMap<>(Comparator + .comparing(String::length) + .reversed() + .thenComparing(String::compareTo)); + sorted.putAll(redactions); + for (Map.Entry entry : sorted.entrySet()) { + data = data.replaceAll("\\Q" + entry.getKey() + "\\E", entry.getValue()); } return data; } diff --git a/solr/core/src/java/org/apache/solr/util/SolrCLI.java b/solr/core/src/java/org/apache/solr/util/SolrCLI.java index ca4e461930d..e6834abfaba 100755 --- a/solr/core/src/java/org/apache/solr/util/SolrCLI.java +++ b/solr/core/src/java/org/apache/solr/util/SolrCLI.java @@ -26,7 +26,6 @@ import java.io.InputStream; import java.io.PrintStream; import java.lang.invoke.MethodHandles; import java.net.ConnectException; -import java.net.MalformedURLException; import java.net.Socket; import java.net.SocketException; import java.net.URL; @@ -863,8 +862,6 @@ public class SolrCLI implements CLIO { public static class AutoscalingTool extends ToolBase { - static final String NODE_REDACTION_PREFIX = "N_"; - static final String COLL_REDACTION_PREFIX = "COLL_"; public AutoscalingTool() { this(CLIO.getOutStream()); @@ -987,9 +984,10 @@ public class SolrCLI implements CLIO { } } } + boolean redact = cli.hasOption("r"); if (cli.hasOption("save")) { File targetDir = new File(cli.getOptionValue("save")); - cloudManager.saveSnapshot(targetDir, true); + cloudManager.saveSnapshot(targetDir, true, redact); CLIO.err("- saved autoscaling snapshot to " + targetDir.getAbsolutePath()); } HashSet liveNodes = new HashSet<>(); @@ -999,7 +997,6 @@ public class SolrCLI implements CLIO { boolean withSortedNodes = cli.hasOption("n"); boolean withClusterState = cli.hasOption("c"); boolean withStats = cli.hasOption("stats"); - boolean redact = cli.hasOption("r"); if (cli.hasOption("all")) { withSuggestions = true; withDiagnostics = true; @@ -1008,25 +1005,11 @@ public class SolrCLI implements CLIO { withStats = true; } // prepare to redact also host names / IPs in base_url and other properties - Set redactNames = new HashSet<>(); - for (String nodeName : liveNodes) { - String urlString = Utils.getBaseUrlForNodeName(nodeName, "http"); - try { - URL u = new URL(urlString); - // protocol format - redactNames.add(u.getHost() + ":" + u.getPort()); - // node name format - redactNames.add(u.getHost() + "_" + u.getPort() + "_"); - } catch (MalformedURLException e) { - log.warn("Invalid URL for node name " + nodeName + ", replacing including protocol and path", e); - redactNames.add(urlString); - redactNames.add(Utils.getBaseUrlForNodeName(nodeName, "https")); - } - } - // redact collection names too - Set redactCollections = new HashSet<>(); ClusterState clusterState = cloudManager.getClusterStateProvider().getClusterState(); - clusterState.forEachCollection(coll -> redactCollections.add(coll.getName())); + RedactionUtils.RedactionContext ctx = null; + if (redact) { + ctx = SimUtils.getRedactionContext(clusterState); + } if (!withSuggestions && !withDiagnostics) { withSuggestions = true; } @@ -1044,13 +1027,12 @@ public class SolrCLI implements CLIO { } Map simulationResults = new HashMap<>(); simulate(cloudManager, config, simulationResults, saveSimulated, withClusterState, - withStats, withSuggestions, withSortedNodes, withDiagnostics, iterations); + withStats, withSuggestions, withSortedNodes, withDiagnostics, iterations, redact); results.put("simulation", simulationResults); } String data = Utils.toJSONString(results); if (redact) { - data = RedactionUtils.redactNames(redactCollections, COLL_REDACTION_PREFIX, data); - data = RedactionUtils.redactNames(redactNames, NODE_REDACTION_PREFIX, data); + data = RedactionUtils.redactNames(ctx.getRedactions(), data); } stdout.println(data); } @@ -1115,7 +1097,7 @@ public class SolrCLI implements CLIO { boolean withStats, boolean withSuggestions, boolean withSortedNodes, - boolean withDiagnostics, int iterations) throws Exception { + boolean withDiagnostics, int iterations, boolean redact) throws Exception { File saveDir = null; if (saveSimulated != null) { saveDir = new File(saveSimulated); @@ -1146,10 +1128,10 @@ public class SolrCLI implements CLIO { SnapshotCloudManager snapshotCloudManager = new SnapshotCloudManager(simCloudManager, config); if (saveDir != null) { File target = new File(saveDir, "step" + loop + "_start"); - snapshotCloudManager.saveSnapshot(target, true); + snapshotCloudManager.saveSnapshot(target, true, redact); } if (verbose) { - Map snapshot = snapshotCloudManager.getSnapshot(false); + Map snapshot = snapshotCloudManager.getSnapshot(false, redact); snapshot.remove(SnapshotCloudManager.DISTRIB_STATE_KEY); snapshot.remove(SnapshotCloudManager.MANAGER_STATE_KEY); perStep.put("snapshotStart", snapshot); @@ -1215,10 +1197,10 @@ public class SolrCLI implements CLIO { snapshotCloudManager = new SnapshotCloudManager(simCloudManager, config); if (saveDir != null) { File target = new File(saveDir, "step" + loop + "_stop"); - snapshotCloudManager.saveSnapshot(target, true); + snapshotCloudManager.saveSnapshot(target, true, redact); } if (verbose) { - Map snapshot = snapshotCloudManager.getSnapshot(false); + Map snapshot = snapshotCloudManager.getSnapshot(false, redact); snapshot.remove(SnapshotCloudManager.DISTRIB_STATE_KEY); snapshot.remove(SnapshotCloudManager.MANAGER_STATE_KEY); perStep.put("snapshotStop", snapshot); diff --git a/solr/core/src/test-files/solr/simSnapshot/autoscalingState.json b/solr/core/src/test-files/solr/simSnapshot/autoscalingState.json new file mode 100644 index 00000000000..9ce3f6f4a65 --- /dev/null +++ b/solr/core/src/test-files/solr/simSnapshot/autoscalingState.json @@ -0,0 +1,3923 @@ +{ + "suggestions":[{ + "suggestion":{ + "type":"improvement", + "operation":{ + "method":"POST", + "path":"/c/COLL_q", + "command":{"move-replica":{ + "targetNode":"N_b9_solr", + "inPlaceMove":"true", + "replica":"core_node3"}}}}, + "replica":{"core_node3":{ + "core":"COLL_q_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765}}}], + "diagnostics":{ + "sortedNodes":[ + { + "node":"N_7e_solr", + "isLive":true, + "cores":13.0, + "freedisk":873.6022491455078, + "sysprop.pool":"pool-03", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "replicas":{ + "COLL_22":{"shard1":[{"core_node6":{ + "core":"COLL_22_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_22", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.4348956483E10, + "INDEX.sizeInGB":22.676732840947807}}]}, + "COLL_q":{"shard1":[{"core_node3":{ + "core":"COLL_q_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765}}]}, + "COLL_1b":{"shard1":[{"core_node3":{ + "core":"COLL_1b_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1b", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1t":{"shard1":[{"core_node3":{ + "core":"COLL_1t_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1t", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.5774407615E10, + "INDEX.sizeInGB":79.8836421361193}}]}, + "COLL_x":{"shard1":[{"core_node3":{ + "core":"COLL_x_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_x", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.18270873E8, + "INDEX.sizeInGB":0.296412848867476}}]}, + "COLL_2k":{"shard1":[{"core_node3":{ + "core":"COLL_2k_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_2k", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1r":{"shard1":[{"core_node3":{ + "core":"COLL_1r_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1r", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.12015174E8, + "INDEX.sizeInGB":0.38371903263032436}}]}, + "COLL_8":{"shard1":[{"core_node3":{ + "core":"COLL_8_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_8", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":356048.0, + "INDEX.sizeInGB":3.315955400466919E-4}}]}, + "COLL_5":{"shard1":[{"core_node2":{ + "core":"COLL_5_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_5", + "node_name":"N_7e_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":5.854396964E9, + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":5.452332053333521}}]}, + "COLL_l":{"shard1":[{"core_node3":{ + "core":"COLL_l_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_l", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1x":{"shard1":[{"core_node3":{ + "core":"COLL_1x_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1x", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4248411.0, + "INDEX.sizeInGB":0.00395664107054472}}]}, + "COLL_4":{"shard1":[{"core_node3":{ + "core":"COLL_4_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_4", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.58881858E8, + "INDEX.sizeInGB":0.2411025185137987}}]}, + "COLL_6":{"shard1":[{"core_node3":{ + "core":"COLL_6_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_6", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.6446420654E10, + "INDEX.sizeInGB":15.316922826692462}}]}}}, + { + "node":"N_0_solr", + "isLive":true, + "cores":12.0, + "freedisk":719.6562576293945, + "sysprop.pool":"pool-03", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "replicas":{ + "COLL_22":{"shard1":[{"core_node10":{ + "core":"COLL_22_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_22", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":2.4351639993E10, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":22.679232054390013}}]}, + "COLL_q":{"shard1":[{"core_node10":{ + "core":"COLL_q_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.9242789E8, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":0.45860921032726765}}]}, + "COLL_1b":{"shard1":[{"core_node10":{ + "core":"COLL_1b_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_1b", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":135.0, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1t":{"shard1":[{"core_node5":{ + "core":"COLL_1t_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_1t", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":8.7485800719E10, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":81.47750116791576}}]}, + "COLL_x":{"shard1":[{"core_node10":{ + "core":"COLL_x_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_x", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":3.0928583E8, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":0.2880448754876852}}]}, + "COLL_2k":{"shard1":[{"core_node10":{ + "core":"COLL_2k_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_2k", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":135.0, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1r":{"shard1":[{"core_node5":{ + "core":"COLL_1r_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_1r", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.25884524E8, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":0.39663587138056755}}]}, + "COLL_8":{"shard1":[{"core_node5":{ + "core":"COLL_8_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_8", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":399225.0, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":3.718072548508644E-4}}]}, + "COLL_l":{"shard1":[{"core_node10":{ + "core":"COLL_l_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_l", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":135.0, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1x":{"shard1":[{"core_node10":{ + "core":"COLL_1x_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_1x", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4264901.0, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":0.003971998579800129}}]}, + "COLL_4":{"shard1":[{"core_node5":{ + "core":"COLL_4_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_4", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":2.58797271E8, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":0.24102374073117971}}]}, + "COLL_6":{"shard1":[{"core_node6":{ + "core":"COLL_6_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_6", + "node_name":"N_0_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.4921656871E10, + "base_url":"http://N_0/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":41.83655313309282}}]}}}, + { + "node":"N_4_solr", + "isLive":true, + "cores":12.0, + "freedisk":875.4758682250977, + "sysprop.pool":"pool-03", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "replicas":{ + "COLL_22":{"shard1":[{"core_node5":{ + "core":"COLL_22_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_22", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.436290627E10, + "INDEX.sizeInGB":22.689724592491984}}]}, + "COLL_q":{"shard1":[{"core_node6":{ + "core":"COLL_q_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765}}]}, + "COLL_1b":{"shard1":[{"core_node6":{ + "core":"COLL_1b_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1b", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1t":{"shard1":[{"core_node6":{ + "core":"COLL_1t_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1t", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.5380419785E10, + "INDEX.sizeInGB":79.51671237591654}}]}, + "COLL_x":{"shard1":[{"core_node6":{ + "core":"COLL_x_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_x", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.03301808E8, + "INDEX.sizeInGB":0.28247182071208954}}]}, + "COLL_2k":{"shard1":[{"core_node6":{ + "core":"COLL_2k_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_2k", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1r":{"shard1":[{"core_node6":{ + "core":"COLL_1r_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1r", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.46826689E8, + "INDEX.sizeInGB":0.4161397824063897}}]}, + "COLL_8":{"shard1":[{"core_node6":{ + "core":"COLL_8_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_8", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":356048.0, + "INDEX.sizeInGB":3.315955400466919E-4}}]}, + "COLL_l":{"shard1":[{"core_node6":{ + "core":"COLL_l_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_l", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1x":{"shard1":[{"core_node6":{ + "core":"COLL_1x_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1x", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4255591.0, + "INDEX.sizeInGB":0.003963327966630459}}]}, + "COLL_4":{"shard1":[{"core_node6":{ + "core":"COLL_4_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_4", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.59832461E8, + "INDEX.sizeInGB":0.2419878365471959}}]}, + "COLL_6":{"shard1":[{"core_node5":{ + "core":"COLL_6_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_6", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.0738852096E10, + "INDEX.sizeInGB":19.314561128616333}}]}}}, + { + "node":"N_g_solr", + "isLive":true, + "cores":6.0, + "freedisk":4007.3253440856934, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard2_1_0":[{"core_node1681":{ + "core":"COLL_2_shard2_1_0_replica_n1680", + "shard":"shard2_1_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3012044407E11, + "INDEX.sizeInGB":121.18410698138177}}], + "shard5_0_1":[{"core_node1771":{ + "core":"COLL_2_shard5_0_1_replica_n1770", + "shard":"shard5_0_1", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31464210597E11, + "INDEX.sizeInGB":122.43558708298951}}], + "shard5_1_0":[{"core_node1783":{ + "core":"COLL_2_shard5_1_0_replica_n1782", + "shard":"shard5_1_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30012462556E11, + "INDEX.sizeInGB":121.08354135975242}}], + "shard5_1_1":[{"core_node861":{ + "core":"COLL_2_shard5_1_1_replica_n859", + "shard":"shard5_1_1", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29967769078E11, + "INDEX.sizeInGB":121.04191731475294}}], + "shard5_0_0":[{"core_node1769":{ + "core":"COLL_2_shard5_0_0_replica_n1768", + "shard":"shard5_0_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31922267714E11, + "INDEX.sizeInGB":122.8621860165149}}], + "shard9_0_0":[{"core_node1683":{ + "core":"COLL_2_shard9_0_0_replica_n1682", + "shard":"shard9_0_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "property.preferredleader":"true", + "INDEX.sizeInBytes":1.29248772716E11, + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.37229977175593}}]}}}, + { + "node":"N_17_solr", + "isLive":true, + "cores":6.0, + "freedisk":4093.756145477295, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard11_1_1":[{"core_node768":{ + "core":"COLL_2_shard11_1_1_replica_n762", + "shard":"shard11_1_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30871431234E11, + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.88351828046143}}], + "shard14_0_0":[{"core_node1121":{ + "core":"COLL_2_shard14_0_0_replica_n1120", + "shard":"shard14_0_0", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3029908264E11, + "INDEX.sizeInGB":121.3504771143198}}], + "shard18_0_1":[{"core_node877":{ + "core":"COLL_2_shard18_0_1_replica_n2", + "shard":"shard18_0_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28174988934E11, + "INDEX.sizeInGB":119.37226069532335}}], + "shard12_0_1":[{"core_node1699":{ + "core":"COLL_2_shard12_0_1_replica_n1698", + "shard":"shard12_0_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30350286057E11, + "INDEX.sizeInGB":121.39816401246935}}], + "shard12_0_0":[{"core_node1751":{ + "core":"COLL_2_shard12_0_0_replica_n1750", + "shard":"shard12_0_0", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2936875619E11, + "INDEX.sizeInGB":120.48404308967292}}], + "shard14_0_1":[{"core_node1123":{ + "core":"COLL_2_shard14_0_1_replica_n1122", + "shard":"shard14_0_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31146492351E11, + "INDEX.sizeInGB":122.13968890812248}}]}}}, + { + "node":"N_303_solr", + "isLive":true, + "cores":6.0, + "freedisk":4111.4668045043945, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard16_0_1":[{"core_node987":{ + "core":"COLL_2_shard16_0_1_replica_n986", + "shard":"shard16_0_1", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30738903625E11, + "INDEX.sizeInGB":121.76009232643992}}], + "shard16_0_0":[{"core_node1785":{ + "core":"COLL_2_shard16_0_0_replica_n1784", + "shard":"shard16_0_0", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26747476604E11, + "INDEX.sizeInGB":118.04278623685241}}], + "shard3_0_0":[{"core_node544":{ + "core":"COLL_2_shard3_0_0_replica_n2", + "shard":"shard3_0_0", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29792212268E11, + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.87841729447246}}], + "shard9_1_1":[{"core_node1163":{ + "core":"COLL_2_shard9_1_1_replica_n1162", + "shard":"shard9_1_1", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.36568824379E11, + "INDEX.sizeInGB":127.18962913285941}}], + "shard9_1_0":[{"core_node1151":{ + "core":"COLL_2_shard9_1_0_replica_n1150", + "shard":"shard9_1_0", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31117387108E11, + "INDEX.sizeInGB":122.11258253827691}}], + "shard4_0_1":[{"core_node1773":{ + "core":"COLL_2_shard4_0_1_replica_n1772", + "shard":"shard4_0_1", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28126128215E11, + "INDEX.sizeInGB":119.3267556047067}}]}}}, + { + "node":"N_dj_solr", + "isLive":true, + "cores":6.0, + "freedisk":4162.087951660156, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard1_1_0":[{"core_node471":{ + "core":"COLL_2_shard1_1_0_replica_n1", + "shard":"shard1_1_0", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29057719236E11, + "base_url":"http://N_dj/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.19436735287309}}], + "shard7_1_0":[{"core_node928":{ + "core":"COLL_2_shard7_1_0_replica_n926", + "shard":"shard7_1_0", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29963886019E11, + "base_url":"http://N_dj/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.03830093424767}}], + "shard7_1_1":[{"core_node941":{ + "core":"COLL_2_shard7_1_1_replica_n927", + "shard":"shard7_1_1", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28538540188E11, + "base_url":"http://N_dj/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.71084418520331}}], + "shard18_0_1":[{"core_node773":{ + "core":"COLL_2_shard18_0_1_replica_n771", + "shard":"shard18_0_1", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30821199599E11, + "base_url":"http://N_dj/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.83673642482609}}], + "shard13_0_1":[{"core_node1715":{ + "core":"COLL_2_shard13_0_1_replica_n1714", + "shard":"shard13_0_1", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30355121703E11, + "base_url":"http://N_dj/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.402667558752}}], + "shard13_0_0":[{"core_node1749":{ + "core":"COLL_2_shard13_0_0_replica_n1748", + "shard":"shard13_0_0", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30427736106E11, + "base_url":"http://N_dj/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.47029499150813}}]}}}, + { + "node":"N_1c_solr", + "isLive":true, + "cores":6.0, + "freedisk":4181.229598999023, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard5_0_1":[{"core_node1703":{ + "core":"COLL_2_shard5_0_1_replica_n1702", + "shard":"shard5_0_1", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31521149156E11, + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.48861524835229}}], + "shard5_1_0":[{"core_node1135":{ + "core":"COLL_2_shard5_1_0_replica_n1134", + "shard":"shard5_1_0", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30030877168E11, + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.1006913036108}}], + "shard18_0_0":[{"core_node874":{ + "core":"COLL_2_shard18_0_0_replica_n1", + "shard":"shard18_0_0", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28011422432E11, + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.21992751955986}}], + "shard5_1_1":[{"core_node1141":{ + "core":"COLL_2_shard5_1_1_replica_n1140", + "shard":"shard5_1_1", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29917464329E11, + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.99506736639887}}], + "shard5_0_0":[{"core_node999":{ + "core":"COLL_2_shard5_0_0_replica_n998", + "shard":"shard5_0_0", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31937405764E11, + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.87628442421556}}], + "shard18_0_1":[{"core_node876":{ + "core":"COLL_2_shard18_0_1_replica_n1", + "shard":"shard18_0_1", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30729375574E11, + "INDEX.sizeInGB":121.75121863745153}}]}}}, + { + "node":"N_z_solr", + "isLive":true, + "cores":6.0, + "freedisk":4215.115695953369, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard1_0_0":[{"core_node1717":{ + "core":"COLL_2_shard1_0_0_replica_n1716", + "shard":"shard1_0_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.7185112146E10, + "INDEX.sizeInGB":53.25778587348759}}], + "shard8_1_0":[{"core_node1707":{ + "core":"COLL_2_shard8_1_0_replica_n1706", + "shard":"shard8_1_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.35679630668E11, + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":126.361502956599}}], + "shard8_0_0":[{"core_node1731":{ + "core":"COLL_2_shard8_0_0_replica_n1730", + "shard":"shard8_0_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30170301246E11, + "INDEX.sizeInGB":121.23054009489715}}], + "shard8_0_1":[{"core_node1695":{ + "core":"COLL_2_shard8_0_1_replica_n1694", + "shard":"shard8_0_1", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.39918850407E11, + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":130.30958399828523}}], + "shard8_1_1":[{"core_node1755":{ + "core":"COLL_2_shard8_1_1_replica_n1754", + "shard":"shard8_1_1", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.33314153125E11, + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":124.15848032105714}}], + "shard14_1_0":[{"core_node1127":{ + "core":"COLL_2_shard14_1_0_replica_n1126", + "shard":"shard14_1_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27443177079E11, + "INDEX.sizeInGB":118.69070779439062}}]}}}, + { + "node":"N_6_solr", + "isLive":true, + "cores":6.0, + "freedisk":4252.47643661499, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard8_1_0":[{"core_node1811":{ + "core":"COLL_2_shard8_1_0_replica_n1810", + "shard":"shard8_1_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.35679249773E11, + "INDEX.sizeInGB":126.36114822048694}}], + "shard4_0_0":[{"core_node520":{ + "core":"COLL_2_shard4_0_0_replica_n2", + "shard":"shard4_0_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28680029361E11, + "INDEX.sizeInGB":119.84261624608189}}], + "shard4_0_1":[{"core_node1803":{ + "core":"COLL_2_shard4_0_1_replica_n1802", + "shard":"shard4_0_1", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28153346526E11, + "INDEX.sizeInGB":119.35210463218391}}], + "shard9_0_0":[{"core_node1799":{ + "core":"COLL_2_shard9_0_0_replica_n1798", + "shard":"shard9_0_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.35157081196E11, + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":125.874840836972}}], + "shard3_1_0":[{"core_node459":{ + "core":"COLL_2_shard3_1_0_replica_n1", + "shard":"shard3_1_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32652501535E11, + "INDEX.sizeInGB":123.54226925875992}}], + "shard15_1_1":[{"core_node1709":{ + "core":"COLL_2_shard15_1_1_replica_n1708", + "shard":"shard15_1_1", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30846984322E11, + "INDEX.sizeInGB":121.86075031943619}}]}}}, + { + "node":"N_1m_solr", + "isLive":true, + "cores":6.0, + "freedisk":4257.921604156494, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard6_1_1":[{"core_node1745":{ + "core":"COLL_2_shard6_1_1_replica_n1744", + "shard":"shard6_1_1", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31273933482E11, + "INDEX.sizeInGB":122.25837771035731}}], + "shard1_1_0":[{"core_node1679":{ + "core":"COLL_2_shard1_1_0_replica_n1678", + "shard":"shard1_1_0", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28970690262E11, + "INDEX.sizeInGB":120.11331530474126}}], + "shard8_0_0":[{"core_node887":{ + "core":"COLL_2_shard8_0_0_replica_n886", + "shard":"shard8_0_0", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30145902623E11, + "INDEX.sizeInGB":121.20781710650772}}], + "shard8_0_1":[{"core_node893":{ + "core":"COLL_2_shard8_0_1_replica_n892", + "shard":"shard8_0_1", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32681734677E11, + "INDEX.sizeInGB":123.56949474383146}}], + "shard8_1_1":[{"core_node1711":{ + "core":"COLL_2_shard8_1_1_replica_n1710", + "shard":"shard8_1_1", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33374089494E11, + "INDEX.sizeInGB":124.21430041454732}}], + "shard6_1_0":[{"core_node1167":{ + "core":"COLL_2_shard6_1_0_replica_n1166", + "shard":"shard6_1_0", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29376799009E11, + "INDEX.sizeInGB":120.49153354857117}}]}}}, + { + "node":"N_4g_solr", + "isLive":true, + "cores":6.0, + "freedisk":4259.9677734375, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard8_1_1":[{"core_node1795":{ + "core":"COLL_2_shard8_1_1_replica_n1794", + "shard":"shard8_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33276674177E11, + "INDEX.sizeInGB":124.1235753307119}}], + "shard9_1_1":[{"core_node944":{ + "core":"COLL_2_shard9_1_1_replica_n930", + "shard":"shard9_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.33928213329E11, + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":124.73036845121533}}], + "shard9_1_0":[{"core_node931":{ + "core":"COLL_2_shard9_1_0_replica_n929", + "shard":"shard9_1_0", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31111103315E11, + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.1067303000018}}], + "shard18_1_1":[{"core_node626":{ + "core":"COLL_2_shard18_1_1_replica_n624", + "shard":"shard18_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28190099634E11, + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.38633363135159}}], + "shard18_1_0":[{"core_node625":{ + "core":"COLL_2_shard18_1_0_replica_n623", + "shard":"shard18_1_0", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28955475131E11, + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.09914510976523}}], + "shard2_1_1":[{"core_node1813":{ + "core":"COLL_2_shard2_1_1_replica_n1812", + "shard":"shard2_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28164947427E11, + "INDEX.sizeInGB":119.36290881317109}}]}}}, + { + "node":"N_cs_solr", + "isLive":true, + "cores":6.0, + "freedisk":4260.629165649414, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard6_1_1":[{"core_node1705":{ + "core":"COLL_2_shard6_1_1_replica_n1704", + "shard":"shard6_1_1", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31274462707E11, + "base_url":"http://N_cs/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.25887058954686}}], + "shard10_0_1":[{"core_node828":{ + "core":"COLL_2_shard10_0_1_replica_n826", + "shard":"shard10_0_1", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28038688927E11, + "base_url":"http://N_cs/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.245321421884}}], + "shard6_1_0":[{"core_node937":{ + "core":"COLL_2_shard6_1_0_replica_n935", + "shard":"shard6_1_0", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29597529819E11, + "base_url":"http://N_cs/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.69710513483733}}], + "shard15_1_0":[{"core_node955":{ + "core":"COLL_2_shard15_1_0_replica_n953", + "shard":"shard15_1_0", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.33515745782E11, + "base_url":"http://N_cs/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":124.34622811339796}}], + "shard10_0_0":[{"core_node827":{ + "core":"COLL_2_shard10_0_0_replica_n825", + "shard":"shard10_0_0", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29486149433E11, + "base_url":"http://N_cs/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.59337406698614}}], + "shard15_1_1":[{"core_node956":{ + "core":"COLL_2_shard15_1_1_replica_n954", + "shard":"shard15_1_1", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30865977458E11, + "base_url":"http://N_cs/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.87843905575573}}]}}}, + { + "node":"N_1f_solr", + "isLive":true, + "cores":6.0, + "freedisk":4260.807849884033, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard11_0_1":[{"core_node1223":{ + "core":"COLL_2_shard11_0_1_replica_n1222", + "shard":"shard11_0_1", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27989218509E11, + "INDEX.sizeInGB":119.19924850482494}}], + "shard11_1_0":[{"core_node779":{ + "core":"COLL_2_shard11_1_0_replica_n778", + "shard":"shard11_1_0", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32552454912E11, + "INDEX.sizeInGB":123.44909358024597}}], + "shard11_0_0":[{"core_node1217":{ + "core":"COLL_2_shard11_0_0_replica_n1216", + "shard":"shard11_0_0", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27720861488E11, + "INDEX.sizeInGB":118.94932155311108}}], + "shard11_1_1":[{"core_node783":{ + "core":"COLL_2_shard11_1_1_replica_n782", + "shard":"shard11_1_1", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30995783614E11, + "INDEX.sizeInGB":121.99933045916259}}], + "shard5_0_1":[{"core_node1003":{ + "core":"COLL_2_shard5_0_1_replica_n1002", + "shard":"shard5_0_1", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31534942129E11, + "INDEX.sizeInGB":122.50146095547825}}], + "shard5_0_0":[{"core_node1001":{ + "core":"COLL_2_shard5_0_0_replica_n1000", + "shard":"shard5_0_0", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31960210955E11, + "INDEX.sizeInGB":122.89752341341227}}]}}}, + { + "node":"N_65p_solr", + "isLive":true, + "cores":6.0, + "freedisk":4260.997627258301, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard7_0_0":[{"core_node774":{ + "core":"COLL_2_shard7_0_0_replica_n1", + "shard":"shard7_0_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29027793373E11, + "INDEX.sizeInGB":120.16649672109634}}], + "shard10_1_0":[{"core_node1797":{ + "core":"COLL_2_shard10_1_0_replica_n1796", + "shard":"shard10_1_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27583656591E11, + "INDEX.sizeInGB":118.82153953518718}}], + "shard3_0_0":[{"core_node543":{ + "core":"COLL_2_shard3_0_0_replica_n1", + "shard":"shard3_0_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29871412511E11, + "INDEX.sizeInGB":120.95217826869339}}], + "shard3_0_1":[{"core_node545":{ + "core":"COLL_2_shard3_0_1_replica_n1", + "shard":"shard3_0_1", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31838835644E11, + "INDEX.sizeInGB":122.784483846277}}], + "shard15_1_0":[{"core_node1173":{ + "core":"COLL_2_shard15_1_0_replica_n1172", + "shard":"shard15_1_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33316507698E11, + "INDEX.sizeInGB":124.16067318804562}}], + "shard15_1_1":[{"core_node1747":{ + "core":"COLL_2_shard15_1_1_replica_n1746", + "shard":"shard15_1_1", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30883359905E11, + "INDEX.sizeInGB":121.89462772104889}}]}}}, + { + "node":"N_u_solr", + "isLive":true, + "cores":6.0, + "freedisk":4260.821304321289, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard8_1_0":[{"core_node1765":{ + "core":"COLL_2_shard8_1_0_replica_n1764", + "shard":"shard8_1_0", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.35571920799E11, + "INDEX.sizeInGB":126.26119032409042}}], + "shard13_1_1":[{"core_node921":{ + "core":"COLL_2_shard13_1_1_replica_n920", + "shard":"shard13_1_1", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29634542289E11, + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.73157568369061}}], + "shard15_0_1":[{"core_node734":{ + "core":"COLL_2_shard15_0_1_replica_n2", + "shard":"shard15_0_1", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27250282639E11, + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.51106084790081}}], + "shard13_0_1":[{"core_node1263":{ + "core":"COLL_2_shard13_0_1_replica_n1262", + "shard":"shard13_0_1", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30321828131E11, + "INDEX.sizeInGB":121.37166050355881}}], + "shard13_1_0":[{"core_node1763":{ + "core":"COLL_2_shard13_1_0_replica_n1762", + "shard":"shard13_1_0", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29567251239E11, + "INDEX.sizeInGB":120.66890600975603}}], + "shard13_0_0":[{"core_node1257":{ + "core":"COLL_2_shard13_0_0_replica_n1256", + "shard":"shard13_0_0", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30381429251E11, + "INDEX.sizeInGB":121.42716837208718}}]}}}, + { + "node":"N_a_solr", + "isLive":true, + "cores":6.0, + "freedisk":4262.172649383545, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard3_0_0":[{"core_node1809":{ + "core":"COLL_2_shard3_0_0_replica_n1808", + "shard":"shard3_0_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29798330608E11, + "INDEX.sizeInGB":120.88411544263363}}], + "shard14_0_0":[{"core_node1119":{ + "core":"COLL_2_shard14_0_0_replica_n1118", + "shard":"shard14_0_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30313698451E11, + "INDEX.sizeInGB":121.36408914905041}}], + "shard15_1_0":[{"core_node1175":{ + "core":"COLL_2_shard15_1_0_replica_n1174", + "shard":"shard15_1_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33321224738E11, + "INDEX.sizeInGB":124.16506627388299}}], + "shard14_1_1":[{"core_node836":{ + "core":"COLL_2_shard14_1_1_replica_n834", + "shard":"shard14_1_1", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29318568492E11, + "INDEX.sizeInGB":120.43730215355754}}], + "shard14_0_1":[{"core_node1125":{ + "core":"COLL_2_shard14_0_1_replica_n1124", + "shard":"shard14_0_1", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31102045065E11, + "INDEX.sizeInGB":122.09829414729029}}], + "shard14_1_0":[{"core_node835":{ + "core":"COLL_2_shard14_1_0_replica_n833", + "shard":"shard14_1_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27418065808E11, + "INDEX.sizeInGB":118.66732110083103}}]}}}, + { + "node":"N_8_solr", + "isLive":true, + "cores":6.0, + "freedisk":4262.037788391113, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard16_1_1":[{"core_node853":{ + "core":"COLL_2_shard16_1_1_replica_n851", + "shard":"shard16_1_1", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.33685050832E11, + "base_url":"http://N_8/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":124.50390572845936}}], + "shard16_0_1":[{"core_node857":{ + "core":"COLL_2_shard16_0_1_replica_n855", + "shard":"shard16_0_1", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30788718518E11, + "base_url":"http://N_8/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.80648606084287}}], + "shard16_1_0":[{"core_node852":{ + "core":"COLL_2_shard16_1_0_replica_n850", + "shard":"shard16_1_0", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28801317856E11, + "base_url":"http://N_8/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.95557495951653}}], + "shard16_0_0":[{"core_node856":{ + "core":"COLL_2_shard16_0_0_replica_n854", + "shard":"shard16_0_0", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.2677230126E11, + "base_url":"http://N_8/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.06590599939227}}], + "shard2_0_0":[{"core_node796":{ + "core":"COLL_2_shard2_0_0_replica_n794", + "shard":"shard2_0_0", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29517293483E11, + "base_url":"http://N_8/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.6223792238161}}], + "shard2_0_1":[{"core_node800":{ + "core":"COLL_2_shard2_0_1_replica_n795", + "shard":"shard2_0_1", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31328007233E11, + "base_url":"http://N_8/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.30873781535774}}]}}}, + { + "node":"N_3a7_solr", + "isLive":true, + "cores":6.0, + "freedisk":4263.317134857178, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard7_0_0":[{"core_node775":{ + "core":"COLL_2_shard7_0_0_replica_n2", + "shard":"shard7_0_0", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29074533898E11, + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.21002722717822}}], + "shard2_0_0":[{"core_node1823":{ + "core":"COLL_2_shard2_0_0_replica_n1822", + "shard":"shard2_0_0", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29476268104E11, + "INDEX.sizeInGB":120.58417136222124}}], + "shard14_0_0":[{"core_node839":{ + "core":"COLL_2_shard14_0_0_replica_n837", + "shard":"shard14_0_0", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30330451538E11, + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.37969167716801}}], + "shard3_1_1":[{"core_node462":{ + "core":"COLL_2_shard3_1_1_replica_n2", + "shard":"shard3_1_1", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2992912768E11, + "INDEX.sizeInGB":121.00592970848083}}], + "shard14_1_1":[{"core_node1825":{ + "core":"COLL_2_shard14_1_1_replica_n1824", + "shard":"shard14_1_1", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.300425186E11, + "INDEX.sizeInGB":121.11153323203325}}], + "shard14_0_1":[{"core_node841":{ + "core":"COLL_2_shard14_0_1_replica_n838", + "shard":"shard14_0_1", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31168916273E11, + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.1605728128925}}]}}}, + { + "node":"N_11_solr", + "isLive":true, + "cores":6.0, + "freedisk":4264.325901031494, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard6_0_0":[{"core_node1210":{ + "core":"COLL_2_shard6_0_0_replica_n1209", + "shard":"shard6_0_0", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28939953876E11, + "INDEX.sizeInGB":120.08468981459737}}], + "shard6_0_1":[{"core_node1212":{ + "core":"COLL_2_shard6_0_1_replica_n1211", + "shard":"shard6_0_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28744354495E11, + "INDEX.sizeInGB":119.90252369549125}}], + "shard9_1_1":[{"core_node1155":{ + "core":"COLL_2_shard9_1_1_replica_n1154", + "shard":"shard9_1_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33894519282E11, + "INDEX.sizeInGB":124.69898842461407}}], + "shard9_1_0":[{"core_node1153":{ + "core":"COLL_2_shard9_1_0_replica_n1152", + "shard":"shard9_1_0", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31406038908E11, + "INDEX.sizeInGB":122.3814104758203}}], + "shard9_0_1":[{"core_node438":{ + "core":"COLL_2_shard9_0_1_replica_n436", + "shard":"shard9_0_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29282915395E11, + "INDEX.sizeInGB":120.40409761946648}}], + "shard12_1_1":[{"core_node662":{ + "core":"COLL_2_shard12_1_1_replica_n2", + "shard":"shard12_1_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26693447901E11, + "INDEX.sizeInGB":117.99246808607131}}]}}}, + { + "node":"N_4f_solr", + "isLive":true, + "cores":6.0, + "freedisk":4264.210151672363, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard2_0_1":[{"core_node915":{ + "core":"COLL_2_shard2_0_1_replica_n914", + "shard":"shard2_0_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31386626219E11, + "INDEX.sizeInGB":122.36333100032061}}], + "shard2_1_0":[{"core_node975":{ + "core":"COLL_2_shard2_1_0_replica_n974", + "shard":"shard2_1_0", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.3001251468E11, + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.0835899040103}}], + "shard6_0_0":[{"core_node1182":{ + "core":"COLL_2_shard6_0_0_replica_n1180", + "shard":"shard6_0_0", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28922958966E11, + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.06886207126081}}], + "shard6_0_1":[{"core_node1189":{ + "core":"COLL_2_shard6_0_1_replica_n1181", + "shard":"shard6_0_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28773562289E11, + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.92972557339817}}], + "shard3_0_1":[{"core_node546":{ + "core":"COLL_2_shard3_0_1_replica_n2", + "shard":"shard3_0_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.31838927317E11, + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":122.78456922341138}}], + "shard2_1_1":[{"core_node1685":{ + "core":"COLL_2_shard2_1_1_replica_n1684", + "shard":"shard2_1_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.2812596905E11, + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.32660737074912}}]}}}, + { + "node":"N_1i_solr", + "isLive":true, + "cores":6.0, + "freedisk":4266.027156829834, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard17_1_0":[{"core_node1200":{ + "core":"COLL_2_shard17_1_0_replica_n1198", + "shard":"shard17_1_0", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29069936299E11, + "INDEX.sizeInGB":120.20574537944049}}], + "shard17_0_1":[{"core_node1117":{ + "core":"COLL_2_shard17_0_1_replica_n1116", + "shard":"shard17_0_1", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30694171889E11, + "INDEX.sizeInGB":121.71843265090138}}], + "shard10_1_1":[{"core_node1779":{ + "core":"COLL_2_shard10_1_1_replica_n1778", + "shard":"shard10_1_1", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30255789623E11, + "INDEX.sizeInGB":121.31015735026449}}], + "shard17_0_0":[{"core_node1781":{ + "core":"COLL_2_shard17_0_0_replica_n1780", + "shard":"shard17_0_0", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30702509646E11, + "INDEX.sizeInGB":121.72619779221714}}], + "shard10_1_0":[{"core_node1693":{ + "core":"COLL_2_shard10_1_0_replica_n1692", + "shard":"shard10_1_0", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27561685082E11, + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.80107697285712}}], + "shard17_1_1":[{"core_node1203":{ + "core":"COLL_2_shard17_1_1_replica_n1199", + "shard":"shard17_1_1", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28764084367E11, + "INDEX.sizeInGB":119.92089857067913}}]}}}, + { + "node":"N_9o_solr", + "isLive":true, + "cores":6.0, + "freedisk":4265.881809234619, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard11_0_1":[{"core_node1221":{ + "core":"COLL_2_shard11_0_1_replica_n1220", + "shard":"shard11_0_1", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28020049235E11, + "INDEX.sizeInGB":119.22796185594052}}], + "shard11_1_0":[{"core_node781":{ + "core":"COLL_2_shard11_1_0_replica_n780", + "shard":"shard11_1_0", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.32420261013E11, + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":123.32597841788083}}], + "shard11_0_0":[{"core_node1219":{ + "core":"COLL_2_shard11_0_0_replica_n1218", + "shard":"shard11_0_0", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28002391411E11, + "INDEX.sizeInGB":119.21151672583073}}], + "shard7_0_0":[{"core_node766":{ + "core":"COLL_2_shard7_0_0_replica_n764", + "shard":"shard7_0_0", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28994593549E11, + "INDEX.sizeInGB":120.13557697553188}}], + "shard11_1_1":[{"core_node785":{ + "core":"COLL_2_shard11_1_1_replica_n784", + "shard":"shard11_1_1", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30909357727E11, + "INDEX.sizeInGB":121.91884007956833}}], + "shard7_0_1":[{"core_node769":{ + "core":"COLL_2_shard7_0_1_replica_n765", + "shard":"shard7_0_1", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28908501869E11, + "INDEX.sizeInGB":120.0553978504613}}]}}}, + { + "node":"N_2_solr", + "isLive":true, + "cores":6.0, + "freedisk":4266.604637145996, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard5_1_0":[{"core_node1137":{ + "core":"COLL_2_shard5_1_0_replica_n1136", + "shard":"shard5_1_0", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":7.6877250282E10, + "INDEX.sizeInGB":71.59751866199076}}], + "shard5_1_1":[{"core_node1139":{ + "core":"COLL_2_shard5_1_1_replica_n1138", + "shard":"shard5_1_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29952609098E11, + "INDEX.sizeInGB":121.02779848314822}}], + "shard7_0_1":[{"core_node776":{ + "core":"COLL_2_shard7_0_1_replica_n1", + "shard":"shard7_0_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.2890128588E11, + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.04867743700743}}], + "shard9_0_1":[{"core_node478":{ + "core":"COLL_2_shard9_0_1_replica_n2", + "shard":"shard9_0_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29212951693E11, + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.33893884439021}}], + "shard12_0_1":[{"core_node1255":{ + "core":"COLL_2_shard12_0_1_replica_n1254", + "shard":"shard12_0_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30384315739E11, + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.42985662352294}}], + "shard12_0_0":[{"core_node1249":{ + "core":"COLL_2_shard12_0_0_replica_n1248", + "shard":"shard12_0_0", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29421522442E11, + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.53318549133837}}]}}}, + { + "node":"N_2u_solr", + "isLive":true, + "cores":6.0, + "freedisk":4266.648368835449, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard17_1_0":[{"core_node1225":{ + "core":"COLL_2_shard17_1_0_replica_n1224", + "shard":"shard17_1_0", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29066474889E11, + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.20252169016749}}], + "shard17_0_1":[{"core_node1115":{ + "core":"COLL_2_shard17_0_1_replica_n1114", + "shard":"shard17_0_1", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30049647193E11, + "INDEX.sizeInGB":121.1181722516194}}], + "shard17_0_0":[{"core_node1735":{ + "core":"COLL_2_shard17_0_0_replica_n1734", + "shard":"shard17_0_0", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31102615765E11, + "INDEX.sizeInGB":122.09882565308362}}], + "shard3_1_1":[{"core_node461":{ + "core":"COLL_2_shard3_1_1_replica_n1", + "shard":"shard3_1_1", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29953637358E11, + "INDEX.sizeInGB":121.02875612489879}}], + "shard17_1_1":[{"core_node1231":{ + "core":"COLL_2_shard17_1_1_replica_n1230", + "shard":"shard17_1_1", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.287734207E11, + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.92959370836616}}], + "shard12_1_0":[{"core_node660":{ + "core":"COLL_2_shard12_1_0_replica_n2", + "shard":"shard12_1_0", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27387972534E11, + "INDEX.sizeInGB":118.63929455541074}}]}}}, + { + "node":"N_m_solr", + "isLive":true, + "cores":6.0, + "freedisk":4267.171646118164, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard6_1_1":[{"core_node1171":{ + "core":"COLL_2_shard6_1_1_replica_n1170", + "shard":"shard6_1_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31256081422E11, + "INDEX.sizeInGB":122.24175168387592}}], + "shard17_1_0":[{"core_node1227":{ + "core":"COLL_2_shard17_1_0_replica_n1226", + "shard":"shard17_1_0", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29049722959E11, + "INDEX.sizeInGB":120.18692023959011}}], + "shard6_0_0":[{"core_node1208":{ + "core":"COLL_2_shard6_0_0_replica_n1207", + "shard":"shard6_0_0", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28936808614E11, + "INDEX.sizeInGB":120.08176056109369}}], + "shard6_0_1":[{"core_node1214":{ + "core":"COLL_2_shard6_0_1_replica_n1213", + "shard":"shard6_0_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28745543493E11, + "INDEX.sizeInGB":119.90363103616983}}], + "shard9_0_1":[{"core_node477":{ + "core":"COLL_2_shard9_0_1_replica_n1", + "shard":"shard9_0_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29063920601E11, + "INDEX.sizeInGB":120.20014282409102}}], + "shard17_1_1":[{"core_node1229":{ + "core":"COLL_2_shard17_1_1_replica_n1228", + "shard":"shard17_1_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28816978409E11, + "INDEX.sizeInGB":119.97015998605639}}]}}}, + { + "node":"N_t_solr", + "isLive":true, + "cores":6.0, + "freedisk":4266.856658935547, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard11_0_1":[{"core_node1195":{ + "core":"COLL_2_shard11_0_1_replica_n1184", + "shard":"shard11_0_1", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27980394382E11, + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.19103039614856}}], + "shard11_1_0":[{"core_node1791":{ + "core":"COLL_2_shard11_1_0_replica_n1790", + "shard":"shard11_1_0", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32416023485E11, + "INDEX.sizeInGB":123.32203191239387}}], + "shard11_0_0":[{"core_node1185":{ + "core":"COLL_2_shard11_0_0_replica_n1183", + "shard":"shard11_0_0", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.2777477116E11, + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.99952884763479}}], + "shard10_1_1":[{"core_node1743":{ + "core":"COLL_2_shard10_1_1_replica_n1742", + "shard":"shard10_1_1", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30757016285E11, + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.77696105558425}}], + "shard10_0_1":[{"core_node905":{ + "core":"COLL_2_shard10_0_1_replica_n904", + "shard":"shard10_0_1", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28142990156E11, + "INDEX.sizeInGB":119.34245951101184}}], + "shard10_0_0":[{"core_node1733":{ + "core":"COLL_2_shard10_0_0_replica_n1732", + "shard":"shard10_0_0", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2914349283E11, + "INDEX.sizeInGB":120.27425023727119}}]}}}, + { + "node":"N_7_solr", + "isLive":true, + "cores":6.0, + "freedisk":4268.472709655762, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard13_1_1":[{"core_node808":{ + "core":"COLL_2_shard13_1_1_replica_n806", + "shard":"shard13_1_1", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2961448776E11, + "INDEX.sizeInGB":120.71289844810963}}], + "shard15_0_1":[{"core_node610":{ + "core":"COLL_2_shard15_0_1_replica_n608", + "shard":"shard15_0_1", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2722802278E11, + "INDEX.sizeInGB":118.49032973870635}}], + "shard15_0_0":[{"core_node609":{ + "core":"COLL_2_shard15_0_0_replica_n607", + "shard":"shard15_0_0", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27258670055E11, + "INDEX.sizeInGB":118.5188722377643}}], + "shard13_0_1":[{"core_node1767":{ + "core":"COLL_2_shard13_0_1_replica_n1766", + "shard":"shard13_0_1", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30339106107E11, + "INDEX.sizeInGB":121.38775187265128}}], + "shard13_1_0":[{"core_node1689":{ + "core":"COLL_2_shard13_1_0_replica_n1688", + "shard":"shard13_1_0", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29592823396E11, + "INDEX.sizeInGB":120.69272193685174}}], + "shard13_0_0":[{"core_node1713":{ + "core":"COLL_2_shard13_0_0_replica_n1712", + "shard":"shard13_0_0", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30437704659E11, + "INDEX.sizeInGB":121.47957892995328}}]}}}, + { + "node":"N_6c_solr", + "isLive":true, + "cores":6.0, + "freedisk":4269.135753631592, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard17_0_1":[{"core_node848":{ + "core":"COLL_2_shard17_0_1_replica_n843", + "shard":"shard17_0_1", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30730929322E11, + "base_url":"http://N_6c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.7526656780392}}], + "shard17_0_0":[{"core_node844":{ + "core":"COLL_2_shard17_0_0_replica_n842", + "shard":"shard17_0_0", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30743109221E11, + "base_url":"http://N_6c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.76400909293443}}], + "shard4_0_0":[{"core_node445":{ + "core":"COLL_2_shard4_0_0_replica_n443", + "shard":"shard4_0_0", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28741762257E11, + "base_url":"http://N_6c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.90010948572308}}], + "shard4_1_0":[{"core_node457":{ + "core":"COLL_2_shard4_1_0_replica_n455", + "shard":"shard4_1_0", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27664473589E11, + "base_url":"http://N_6c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.89680622983724}}], + "shard4_0_1":[{"core_node446":{ + "core":"COLL_2_shard4_0_1_replica_n444", + "shard":"shard4_0_1", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.28032413116E11, + "base_url":"http://N_6c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.23947661742568}}], + "shard4_1_1":[{"core_node458":{ + "core":"COLL_2_shard4_1_1_replica_n456", + "shard":"shard4_1_1", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27865802727E11, + "base_url":"http://N_6c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.08430860098451}}]}}}, + { + "node":"N_6i_solr", + "isLive":true, + "cores":6.0, + "freedisk":4269.712917327881, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard10_1_1":[{"core_node840":{ + "core":"COLL_2_shard10_1_1_replica_n830", + "shard":"shard10_1_1", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30273229534E11, + "INDEX.sizeInGB":121.32639953307807}}], + "shard10_1_0":[{"core_node831":{ + "core":"COLL_2_shard10_1_0_replica_n829", + "shard":"shard10_1_0", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27564995026E11, + "INDEX.sizeInGB":118.80415959842503}}], + "shard10_0_1":[{"core_node1739":{ + "core":"COLL_2_shard10_0_1_replica_n1738", + "shard":"shard10_0_1", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28024871739E11, + "INDEX.sizeInGB":119.2324531627819}}], + "shard2_1_0":[{"core_node1727":{ + "core":"COLL_2_shard2_1_0_replica_n1726", + "shard":"shard2_1_0", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30025926492E11, + "INDEX.sizeInGB":121.0960806272924}}], + "shard10_0_0":[{"core_node897":{ + "core":"COLL_2_shard10_0_0_replica_n896", + "shard":"shard10_0_0", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29103730913E11, + "INDEX.sizeInGB":120.2372190663591}}], + "shard2_1_1":[{"core_node979":{ + "core":"COLL_2_shard2_1_1_replica_n978", + "shard":"shard2_1_1", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2815510735E11, + "INDEX.sizeInGB":119.35374452732503}}]}}}, + { + "node":"N_3_solr", + "isLive":true, + "cores":6.0, + "freedisk":4272.45711517334, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard16_1_1":[{"core_node997":{ + "core":"COLL_2_shard16_1_1_replica_n996", + "shard":"shard16_1_1", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26611980672E11, + "INDEX.sizeInGB":117.91659581661224}}], + "shard16_1_0":[{"core_node991":{ + "core":"COLL_2_shard16_1_0_replica_n990", + "shard":"shard16_1_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28724323652E11, + "INDEX.sizeInGB":119.88386851921678}}], + "shard1_1_1":[{"core_node474":{ + "core":"COLL_2_shard1_1_1_replica_n2", + "shard":"shard1_1_1", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29556889925E11, + "INDEX.sizeInGB":120.65925628412515}}], + "shard4_0_0":[{"core_node1737":{ + "core":"COLL_2_shard4_0_0_replica_n1736", + "shard":"shard4_0_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28645187639E11, + "INDEX.sizeInGB":119.81016736384481}}], + "shard4_1_0":[{"core_node523":{ + "core":"COLL_2_shard4_1_0_replica_n1", + "shard":"shard4_1_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27649471364E11, + "INDEX.sizeInGB":118.88283431902528}}], + "shard9_0_0":[{"core_node1815":{ + "core":"COLL_2_shard9_0_0_replica_n1814", + "shard":"shard9_0_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29037175651E11, + "INDEX.sizeInGB":120.17523464839906}}]}}}, + { + "node":"N_1d_solr", + "isLive":true, + "cores":6.0, + "freedisk":4273.009799957275, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard3_1_0":[{"core_node425":{ + "core":"COLL_2_shard3_1_0_replica_n423", + "shard":"shard3_1_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.2828759808E11, + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":119.47713613510132}}], + "shard3_1_1":[{"core_node426":{ + "core":"COLL_2_shard3_1_1_replica_n424", + "shard":"shard3_1_1", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29948029547E11, + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.02353344392031}}], + "shard15_0_0":[{"core_node732":{ + "core":"COLL_2_shard15_0_0_replica_n2", + "shard":"shard15_0_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27262832088E11, + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.5227484330535}}], + "shard12_1_0":[{"core_node1789":{ + "core":"COLL_2_shard12_1_0_replica_n1788", + "shard":"shard12_1_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27487519935E11, + "INDEX.sizeInGB":118.73200529720634}}], + "shard14_1_1":[{"core_node1741":{ + "core":"COLL_2_shard14_1_1_replica_n1740", + "shard":"shard14_1_1", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29231781669E11, + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.35647562611848}}], + "shard14_1_0":[{"core_node1129":{ + "core":"COLL_2_shard14_1_0_replica_n1128", + "shard":"shard14_1_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27407685053E11, + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.65765326935798}}]}}}, + { + "node":"N_1_solr", + "isLive":true, + "cores":6.0, + "freedisk":4274.765396118164, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard16_1_1":[{"core_node995":{ + "core":"COLL_2_shard16_1_1_replica_n994", + "shard":"shard16_1_1", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26672765511E11, + "INDEX.sizeInGB":117.97320610936731}}], + "shard16_0_1":[{"core_node989":{ + "core":"COLL_2_shard16_0_1_replica_n988", + "shard":"shard16_0_1", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3069803609E11, + "INDEX.sizeInGB":121.72203146852553}}], + "shard16_1_0":[{"core_node993":{ + "core":"COLL_2_shard16_1_0_replica_n992", + "shard":"shard16_1_0", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28812502313E11, + "INDEX.sizeInGB":119.96599129680544}}], + "shard16_0_0":[{"core_node983":{ + "core":"COLL_2_shard16_0_0_replica_n982", + "shard":"shard16_0_0", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26766519189E11, + "INDEX.sizeInGB":118.06052102614194}}], + "shard18_0_0":[{"core_node875":{ + "core":"COLL_2_shard18_0_0_replica_n2", + "shard":"shard18_0_0", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28033512867E11, + "INDEX.sizeInGB":119.24050084035844}}], + "shard12_1_1":[{"core_node586":{ + "core":"COLL_2_shard12_1_1_replica_n584", + "shard":"shard12_1_1", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2671712403E11, + "INDEX.sizeInGB":118.01451819948852}}]}}}, + { + "node":"N_aw_solr", + "isLive":true, + "cores":6.0, + "freedisk":4276.759601593018, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard18_1_1":[{"core_node1821":{ + "core":"COLL_2_shard18_1_1_replica_n1820", + "shard":"shard18_1_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28188518759E11, + "INDEX.sizeInGB":119.38486132677644}}], + "shard4_1_1":[{"core_node525":{ + "core":"COLL_2_shard4_1_1_replica_n1", + "shard":"shard4_1_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27899653279E11, + "INDEX.sizeInGB":119.11583438422531}}], + "shard3_1_0":[{"core_node460":{ + "core":"COLL_2_shard3_1_0_replica_n2", + "shard":"shard3_1_0", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28273400877E11, + "INDEX.sizeInGB":119.46391395945102}}], + "shard15_0_1":[{"core_node1817":{ + "core":"COLL_2_shard15_0_1_replica_n1816", + "shard":"shard15_0_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27129784031E11, + "INDEX.sizeInGB":118.39883777406067}}], + "shard12_1_1":[{"core_node661":{ + "core":"COLL_2_shard12_1_1_replica_n1", + "shard":"shard12_1_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.26701654869E11, + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.00011142063886}}], + "shard12_1_0":[{"core_node659":{ + "core":"COLL_2_shard12_1_0_replica_n1", + "shard":"shard12_1_0", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.27434400341E11, + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":118.68253382015973}}]}}}, + { + "node":"N_1h_solr", + "isLive":true, + "cores":6.0, + "freedisk":4297.329685211182, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard1_0_0":[{"core_node1729":{ + "core":"COLL_2_shard1_0_0_replica_n1728", + "shard":"shard1_0_0", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.7176945428E10, + "INDEX.sizeInGB":53.25018002465367}}], + "shard7_1_0":[{"core_node1145":{ + "core":"COLL_2_shard7_1_0_replica_n1144", + "shard":"shard7_1_0", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2949609012E11, + "INDEX.sizeInGB":120.60263205319643}}], + "shard7_1_1":[{"core_node1701":{ + "core":"COLL_2_shard7_1_1_replica_n1700", + "shard":"shard7_1_1", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28489170345E11, + "INDEX.sizeInGB":119.66486493591219}}], + "shard3_0_1":[{"core_node510":{ + "core":"COLL_2_shard3_0_1_replica_n508", + "shard":"shard3_0_1", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31866901019E11, + "INDEX.sizeInGB":122.81062176357955}}], + "shard12_0_1":[{"core_node1761":{ + "core":"COLL_2_shard12_0_1_replica_n1760", + "shard":"shard12_0_1", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30342308934E11, + "INDEX.sizeInGB":121.39073473773897}}], + "shard12_0_0":[{"core_node1697":{ + "core":"COLL_2_shard12_0_0_replica_n1696", + "shard":"shard12_0_0", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29369271388E11, + "INDEX.sizeInGB":120.48452290520072}}]}}}, + { + "node":"N_29_solr", + "isLive":true, + "cores":6.0, + "freedisk":4303.548599243164, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard8_0_0":[{"core_node1691":{ + "core":"COLL_2_shard8_0_0_replica_n1690", + "shard":"shard8_0_0", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.30176337999E11, + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":121.23616225924343}}], + "shard8_0_1":[{"core_node1787":{ + "core":"COLL_2_shard8_0_1_replica_n1786", + "shard":"shard8_0_1", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32692723859E11, + "INDEX.sizeInGB":123.57972921710461}}], + "shard7_1_0":[{"core_node1143":{ + "core":"COLL_2_shard7_1_0_replica_n1142", + "shard":"shard7_1_0", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2946739865E11, + "INDEX.sizeInGB":120.57591103948653}}], + "shard7_0_1":[{"core_node777":{ + "core":"COLL_2_shard7_0_1_replica_n2", + "shard":"shard7_0_1", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.6794048237E10, + "INDEX.sizeInGB":80.83325646538287}}], + "shard7_1_1":[{"core_node1759":{ + "core":"COLL_2_shard7_1_1_replica_n1758", + "shard":"shard7_1_1", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28546712309E11, + "INDEX.sizeInGB":119.7184550659731}}], + "shard6_1_0":[{"core_node1793":{ + "core":"COLL_2_shard6_1_0_replica_n1792", + "shard":"shard6_1_0", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29365181039E11, + "INDEX.sizeInGB":120.48071347083896}}]}}}, + { + "node":"N_e_solr", + "isLive":true, + "cores":6.0, + "freedisk":4334.874732971191, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard1_0_1":[{"core_node1719":{ + "core":"COLL_2_shard1_0_1_replica_n1718", + "shard":"shard1_0_1", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":5.9506746089E10, + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":55.41997597459704}}], + "shard18_0_0":[{"core_node1819":{ + "core":"COLL_2_shard18_0_0_replica_n1818", + "shard":"shard18_0_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28218931509E11, + "INDEX.sizeInGB":119.41318540740758}}], + "shard13_1_1":[{"core_node925":{ + "core":"COLL_2_shard13_1_1_replica_n924", + "shard":"shard13_1_1", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29598508564E11, + "INDEX.sizeInGB":120.69801666215062}}], + "shard18_1_0":[{"core_node672":{ + "core":"COLL_2_shard18_1_0_replica_n2", + "shard":"shard18_1_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29108586002E11, + "INDEX.sizeInGB":120.24174072034657}}], + "shard15_0_0":[{"core_node731":{ + "core":"COLL_2_shard15_0_0_replica_n1", + "shard":"shard15_0_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27235871561E11, + "INDEX.sizeInGB":118.49763948563486}}], + "shard13_1_0":[{"core_node923":{ + "core":"COLL_2_shard13_1_0_replica_n922", + "shard":"shard13_1_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29514183189E11, + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.6194825368002}}]}}}, + { + "node":"N_2w_solr", + "isLive":true, + "cores":6.0, + "freedisk":4336.208312988281, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard1_0_1":[{"core_node1677":{ + "core":"COLL_2_shard1_0_1_replica_n1676", + "shard":"shard1_0_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.9557275352E10, + "INDEX.sizeInGB":55.46703501790762}}], + "shard1_1_1":[{"core_node1807":{ + "core":"COLL_2_shard1_1_1_replica_n1806", + "shard":"shard1_1_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2954748046E11, + "INDEX.sizeInGB":120.6504930369556}}], + "shard4_1_0":[{"core_node1775":{ + "core":"COLL_2_shard4_1_0_replica_n1774", + "shard":"shard4_1_0", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27659935903E11, + "INDEX.sizeInGB":118.89258018042892}}], + "shard18_1_1":[{"core_node673":{ + "core":"COLL_2_shard18_1_1_replica_n1", + "shard":"shard18_1_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28226679933E11, + "INDEX.sizeInGB":119.42040168959647}}], + "shard4_1_1":[{"core_node1805":{ + "core":"COLL_2_shard4_1_1_replica_n1804", + "shard":"shard4_1_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27878088796E11, + "INDEX.sizeInGB":119.0957508943975}}], + "shard18_1_0":[{"core_node671":{ + "core":"COLL_2_shard18_1_0_replica_n1", + "shard":"shard18_1_0", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28884297502E11, + "INDEX.sizeInGB":120.03285577706993}}]}}}, + { + "node":"N_5_solr", + "isLive":true, + "cores":6.0, + "freedisk":4397.149795532227, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "replicas":{"COLL_2":{ + "shard1_1_0":[{"core_node1721":{ + "core":"COLL_2_shard1_1_0_replica_n1720", + "shard":"shard1_1_0", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29009851855E11, + "INDEX.sizeInGB":120.14978738036007}}], + "shard1_0_1":[{"core_node1669":{ + "core":"COLL_2_shard1_0_1_replica_n1668", + "shard":"shard1_0_1", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.9574276743E10, + "INDEX.sizeInGB":55.482868797145784}}], + "shard1_1_1":[{"core_node418":{ + "core":"COLL_2_shard1_1_1_replica_n416", + "shard":"shard1_1_1", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":1.29698716918E11, + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":120.79134296439588}}], + "shard2_0_0":[{"core_node911":{ + "core":"COLL_2_shard2_0_0_replica_n910", + "shard":"shard2_0_0", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29504451209E11, + "INDEX.sizeInGB":120.6104189241305}}], + "shard2_0_1":[{"core_node917":{ + "core":"COLL_2_shard2_0_1_replica_n916", + "shard":"shard2_0_1", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31334463143E11, + "INDEX.sizeInGB":122.31475035008043}}], + "shard1_0_0":[{"core_node1725":{ + "core":"COLL_2_shard1_0_0_replica_n1724", + "shard":"shard1_0_0", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":5.7183711221E10, + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":53.25648116040975}}]}}}, + { + "node":"N_do_solr", + "isLive":true, + "cores":5.0, + "freedisk":407.25314712524414, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard3_0_0":[{"core_node112":{ + "core":"COLL_1_shard3_0_0_replica_n111", + "shard":"shard3_0_0", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.4957115524E10, + "base_url":"http://N_do/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":41.86957657709718}}], + "shard3_1_0":[{"core_node116":{ + "core":"COLL_1_shard3_1_0_replica_n115", + "shard":"shard3_1_0", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.3732753925E10, + "base_url":"http://N_do/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":40.72930098045617}}], + "shard3_0_1":[{"core_node114":{ + "core":"COLL_1_shard3_0_1_replica_n113", + "shard":"shard3_0_1", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.577095697E10, + "base_url":"http://N_do/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":42.62752548791468}}], + "shard3_1_1":[{"core_node118":{ + "core":"COLL_1_shard3_1_1_replica_n117", + "shard":"shard3_1_1", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.8532509927E10, + "base_url":"http://N_do/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":45.19942209776491}}]}, + "COLL_0":{"shard3":[{"core_node15":{ + "core":"COLL_0_shard3_replica_n12", + "shard":"shard3", + "collection":"COLL_0", + "node_name":"N_do_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":3.1297025422E10, + "base_url":"http://N_do/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":29.147626293823123}}]}}}, + { + "node":"N_3a_solr", + "isLive":true, + "cores":5.0, + "freedisk":407.706729888916, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard3_0_0":[{"core_node73":{ + "core":"COLL_1_shard3_0_0_replica_n71", + "shard":"shard3_0_0", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5160600486E10, + "INDEX.sizeInGB":42.05908671580255}}], + "shard3_1_0":[{"core_node77":{ + "core":"COLL_1_shard3_1_0_replica_n75", + "shard":"shard3_1_0", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5090380622E10, + "INDEX.sizeInGB":41.99368937127292}}], + "shard3_0_1":[{"core_node74":{ + "core":"COLL_1_shard3_0_1_replica_n72", + "shard":"shard3_0_1", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5879426317E10, + "INDEX.sizeInGB":42.72854543942958}}], + "shard3_1_1":[{"core_node78":{ + "core":"COLL_1_shard3_1_1_replica_n76", + "shard":"shard3_1_1", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.6849085882E10, + "INDEX.sizeInGB":43.631611282005906}}]}, + "COLL_0":{"shard3":[{"core_node17":{ + "core":"COLL_0_shard3_replica_n14", + "shard":"shard3", + "collection":"COLL_0", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.0819950704E10, + "INDEX.sizeInGB":28.70331583917141}}]}}}, + { + "node":"N_v_solr", + "isLive":true, + "cores":5.0, + "freedisk":412.18456649780273, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard3_0_0":[{"core_node120":{ + "core":"COLL_1_shard3_0_0_replica_n119", + "shard":"shard3_0_0", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3809517838E10, + "INDEX.sizeInGB":40.80079294554889}}], + "shard3_1_0":[{"core_node124":{ + "core":"COLL_1_shard3_1_0_replica_n123", + "shard":"shard3_1_0", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5638162031E10, + "INDEX.sizeInGB":42.503850563429296}}], + "shard3_0_1":[{"core_node122":{ + "core":"COLL_1_shard3_0_1_replica_n121", + "shard":"shard3_0_1", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.6310602091E10, + "INDEX.sizeInGB":43.13010917138308}}], + "shard3_1_1":[{"core_node126":{ + "core":"COLL_1_shard3_1_1_replica_n125", + "shard":"shard3_1_1", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4257494507E10, + "INDEX.sizeInGB":41.21800373028964}}]}, + "COLL_0":{"shard3":[{"core_node18":{ + "core":"COLL_0_shard3_replica_n16", + "shard":"shard3", + "collection":"COLL_0", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.8932093807E10, + "INDEX.sizeInGB":26.94511209335178}}]}}}, + { + "node":"N_13_solr", + "isLive":true, + "cores":5.0, + "freedisk":718.1634063720703, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard1_1_0":[{"core_node61":{ + "core":"COLL_1_shard1_1_0_replica_n59", + "shard":"shard1_1_0", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3783419579E10, + "INDEX.sizeInGB":40.77648704778403}}], + "shard1_0_1":[{"core_node58":{ + "core":"COLL_1_shard1_0_1_replica_n56", + "shard":"shard1_0_1", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4932001726E10, + "INDEX.sizeInGB":41.846187530085444}}], + "shard1_1_1":[{"core_node62":{ + "core":"COLL_1_shard1_1_1_replica_n60", + "shard":"shard1_1_1", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.811959042E10, + "INDEX.sizeInGB":44.814860839396715}}], + "shard1_0_0":[{"core_node57":{ + "core":"COLL_1_shard1_0_0_replica_n55", + "shard":"shard1_0_0", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5921892273E10, + "INDEX.sizeInGB":42.76809494290501}}]}, + "COLL_0":{"shard2":[{"core_node13":{ + "core":"COLL_0_shard2_replica_n10", + "shard":"shard2", + "collection":"COLL_0", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.4248182159E10, + "INDEX.sizeInGB":31.896105184219778}}]}}}, + { + "node":"N_3to_solr", + "isLive":true, + "cores":5.0, + "freedisk":794.5433731079102, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard1_1_0":[{"core_node84":{ + "core":"COLL_1_shard1_1_0_replica_n83", + "shard":"shard1_1_0", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.3892348528E10, + "base_url":"http://N_3to/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":40.87793503701687}}], + "shard1_0_1":[{"core_node82":{ + "core":"COLL_1_shard1_0_1_replica_n81", + "shard":"shard1_0_1", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.4936912617E10, + "base_url":"http://N_3to/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":41.85076115373522}}], + "shard1_1_1":[{"core_node86":{ + "core":"COLL_1_shard1_1_1_replica_n85", + "shard":"shard1_1_1", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":5.1015133973E10, + "base_url":"http://N_3to/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":47.511545916087925}}], + "shard1_0_0":[{"core_node80":{ + "core":"COLL_1_shard1_0_0_replica_n79", + "shard":"shard1_0_0", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.644843302E10, + "base_url":"http://N_3to/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":43.258474227041006}}]}, + "COLL_0":{"shard2":[{"core_node11":{ + "core":"COLL_0_shard2_replica_n8", + "shard":"shard2", + "collection":"COLL_0", + "node_name":"N_3to_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":3.0722710385E10, + "base_url":"http://N_3to/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":28.6127537349239}}]}}}, + { + "node":"N_16_solr", + "isLive":true, + "cores":5.0, + "freedisk":795.7872657775879, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard2_0_0":[{"core_node100":{ + "core":"COLL_1_shard2_0_0_replica_n99", + "shard":"shard2_0_0", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.8764329025E10, + "INDEX.sizeInGB":45.41532045695931}}], + "shard2_0_1":[{"core_node102":{ + "core":"COLL_1_shard2_0_1_replica_n101", + "shard":"shard2_0_1", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3740343099E10, + "INDEX.sizeInGB":40.73636894952506}}], + "shard2_1_0":[{"core_node96":{ + "core":"COLL_1_shard2_1_0_replica_n95", + "shard":"shard2_1_0", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5585236311E10, + "INDEX.sizeInGB":42.45455964561552}}], + "shard2_1_1":[{"core_node98":{ + "core":"COLL_1_shard2_1_1_replica_n97", + "shard":"shard2_1_1", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.527594328E10, + "INDEX.sizeInGB":42.16650806367397}}]}, + "COLL_0":{"shard1":[{"core_node5":{ + "core":"COLL_0_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_0", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.3775978753E10, + "INDEX.sizeInGB":31.45633149240166}}]}}}, + { + "node":"N_d4_solr", + "isLive":true, + "cores":5.0, + "freedisk":797.2159843444824, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard2_0_0":[{"core_node69":{ + "core":"COLL_1_shard2_0_0_replica_n67", + "shard":"shard2_0_0", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.497304707E10, + "base_url":"http://N_d4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":41.8844139855355}}], + "shard2_0_1":[{"core_node70":{ + "core":"COLL_1_shard2_0_1_replica_n68", + "shard":"shard2_0_1", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.5692831033E10, + "base_url":"http://N_d4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":42.554765039123595}}], + "shard2_1_0":[{"core_node65":{ + "core":"COLL_1_shard2_1_0_replica_n63", + "shard":"shard2_1_0", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.5935880044E10, + "base_url":"http://N_d4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":42.78112206980586}}], + "shard2_1_1":[{"core_node66":{ + "core":"COLL_1_shard2_1_1_replica_n64", + "shard":"shard2_1_1", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":4.5166045429E10, + "base_url":"http://N_d4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":42.064157714135945}}]}, + "COLL_0":{"shard1":[{"core_node3":{ + "core":"COLL_0_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_0", + "node_name":"N_d4_solr", + "type":"NRT", + "leader":"true", + "INDEX.sizeInBytes":3.401835331E10, + "base_url":"http://N_d4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInGB":31.682060388848186}}]}}}, + { + "node":"N_b9_solr", + "isLive":true, + "cores":5.0, + "freedisk":801.2417984008789, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard1_1_0":[{"core_node92":{ + "core":"COLL_1_shard1_1_0_replica_n91", + "shard":"shard1_1_0", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5724314347E10, + "INDEX.sizeInGB":42.5840861601755}}], + "shard1_0_1":[{"core_node90":{ + "core":"COLL_1_shard1_0_1_replica_n89", + "shard":"shard1_0_1", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.6030616744E10, + "INDEX.sizeInGB":42.869352497160435}}], + "shard1_1_1":[{"core_node94":{ + "core":"COLL_1_shard1_1_1_replica_n93", + "shard":"shard1_1_1", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.574559386E10, + "INDEX.sizeInGB":42.603904251009226}}], + "shard1_0_0":[{"core_node88":{ + "core":"COLL_1_shard1_0_0_replica_n87", + "shard":"shard1_0_0", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5100613575E10, + "INDEX.sizeInGB":42.0032195514068}}]}, + "COLL_0":{"shard2":[{"core_node9":{ + "core":"COLL_0_shard2_replica_n6", + "shard":"shard2", + "collection":"COLL_0", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.8865621899E10, + "INDEX.sizeInGB":26.883205304853618}}]}}}, + { + "node":"N_74_solr", + "isLive":true, + "cores":5.0, + "freedisk":802.5921897888184, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "replicas":{ + "COLL_1":{ + "shard2_0_0":[{"core_node108":{ + "core":"COLL_1_shard2_0_0_replica_n107", + "shard":"shard2_0_0", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3767024396E10, + "INDEX.sizeInGB":40.76121784374118}}], + "shard2_0_1":[{"core_node110":{ + "core":"COLL_1_shard2_0_1_replica_n109", + "shard":"shard2_0_1", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.8622428842E10, + "INDEX.sizeInGB":45.28316561318934}}], + "shard2_1_0":[{"core_node104":{ + "core":"COLL_1_shard2_1_0_replica_n103", + "shard":"shard2_1_0", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4599223614E10, + "INDEX.sizeInGB":41.536263762041926}}], + "shard2_1_1":[{"core_node106":{ + "core":"COLL_1_shard2_1_1_replica_n105", + "shard":"shard2_1_1", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3768191618E10, + "INDEX.sizeInGB":40.762304903939366}}]}, + "COLL_0":{"shard1":[{"core_node7":{ + "core":"COLL_0_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_0", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.9252853492E10, + "INDEX.sizeInGB":27.24384282901883}}]}}}], + "liveNodes":[ + "N_7e_solr", + "N_dj_solr", + "N_b9_solr", + "N_m_solr", + "N_1i_solr", + "N_17_solr", + "N_1_solr", + "N_g_solr", + "N_e_solr", + "N_4_solr", + "N_a_solr", + "N_16_solr", + "N_2w_solr", + "N_13_solr", + "N_2_solr", + "N_1m_solr", + "N_5_solr", + "N_do_solr", + "N_3a_solr", + "N_6i_solr", + "N_cs_solr", + "N_1f_solr", + "N_65p_solr", + "N_1c_solr", + "N_1d_solr", + "N_d4_solr", + "N_2u_solr", + "N_3to_solr", + "N_v_solr", + "N_3a7_solr", + "N_74_solr", + "N_t_solr", + "N_9o_solr", + "N_11_solr", + "N_0_solr", + "N_8_solr", + "N_7_solr", + "N_303_solr", + "N_6_solr", + "N_29_solr", + "N_3_solr", + "N_1h_solr", + "N_aw_solr", + "N_6c_solr", + "N_z_solr", + "N_4f_solr", + "N_4g_solr", + "N_u_solr"], + "violations":[], + "config":{ + "cluster-preferences":[ + { + "minimize":"cores", + "precision":1}, + { + "maximize":"freedisk", + "precision":10}], + "cluster-policy":[ + { + "replica":"#ALL", + "collection":"COLL_2", + "sysprop.pool":"pool-01"}, + { + "replica":"#ALL", + "collection":"COLL_1", + "sysprop.pool":"pool-02"}, + { + "replica":"#ALL", + "collection":"COLL_0", + "sysprop.pool":"pool-02"}, + { + "replica":"<2", + "shard":"#EACH", + "node":"#ANY"}, + { + "replica":"#EQUAL", + "shard":"#EACH", + "sysprop.az":"#EACH"}]}}} \ No newline at end of file diff --git a/solr/core/src/test-files/solr/simSnapshot/clusterState.json b/solr/core/src/test-files/solr/simSnapshot/clusterState.json new file mode 100644 index 00000000000..004d202cc3d --- /dev/null +++ b/solr/core/src/test-files/solr/simSnapshot/clusterState.json @@ -0,0 +1,2854 @@ +{ + "clusterProperties":{}, + "liveNodes":[ + "N_7e_solr", + "N_dj_solr", + "N_b9_solr", + "N_m_solr", + "N_1i_solr", + "N_17_solr", + "N_1_solr", + "N_g_solr", + "N_e_solr", + "N_4_solr", + "N_a_solr", + "N_16_solr", + "N_2w_solr", + "N_13_solr", + "N_2_solr", + "N_1m_solr", + "N_5_solr", + "N_do_solr", + "N_3a_solr", + "N_6i_solr", + "N_cs_solr", + "N_1f_solr", + "N_65p_solr", + "N_1c_solr", + "N_1d_solr", + "N_d4_solr", + "N_2u_solr", + "N_3to_solr", + "N_v_solr", + "N_3a7_solr", + "N_74_solr", + "N_t_solr", + "N_9o_solr", + "N_11_solr", + "N_0_solr", + "N_8_solr", + "N_7_solr", + "N_303_solr", + "N_6_solr", + "N_29_solr", + "N_3_solr", + "N_1h_solr", + "N_aw_solr", + "N_6c_solr", + "N_z_solr", + "N_4f_solr", + "N_4g_solr", + "N_u_solr"], + "clusterState":{ + "COLL_1t":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_1t_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node5":{ + "core":"COLL_1t_shard1_replica_n2", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node6":{ + "core":"COLL_1t_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_x":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_x_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_x_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_x_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_2k":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_2k_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_2k_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_2k_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_1r":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_1r_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node5":{ + "core":"COLL_1r_shard1_replica_n2", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node6":{ + "core":"COLL_1r_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_8":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_8_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node5":{ + "core":"COLL_8_shard1_replica_n2", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node6":{ + "core":"COLL_8_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_1":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{ + "shard1_0_0":{ + "range":"80000000-9554ffff", + "state":"active", + "replicas":{ + "core_node57":{ + "core":"COLL_1_shard1_0_0_replica_n55", + "base_url":"http://N_13/solr", + "node_name":"N_13_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node80":{ + "core":"COLL_1_shard1_0_0_replica_n79", + "base_url":"http://N_3to/solr", + "node_name":"N_3to_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node88":{ + "core":"COLL_1_shard1_0_0_replica_n87", + "base_url":"http://N_b9/solr", + "node_name":"N_b9_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040263462532068"}, + "shard1_0_1":{ + "range":"95550000-aaa9ffff", + "state":"active", + "replicas":{ + "core_node58":{ + "core":"COLL_1_shard1_0_1_replica_n56", + "base_url":"http://N_13/solr", + "node_name":"N_13_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node82":{ + "core":"COLL_1_shard1_0_1_replica_n81", + "base_url":"http://N_3to/solr", + "node_name":"N_3to_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node90":{ + "core":"COLL_1_shard1_0_1_replica_n89", + "base_url":"http://N_b9/solr", + "node_name":"N_b9_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040263462514239"}, + "shard1_1_0":{ + "range":"aaaa0000-bffeffff", + "state":"active", + "replicas":{ + "core_node61":{ + "core":"COLL_1_shard1_1_0_replica_n59", + "base_url":"http://N_13/solr", + "node_name":"N_13_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node84":{ + "core":"COLL_1_shard1_1_0_replica_n83", + "base_url":"http://N_3to/solr", + "node_name":"N_3to_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node92":{ + "core":"COLL_1_shard1_1_0_replica_n91", + "base_url":"http://N_b9/solr", + "node_name":"N_b9_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040278815865699"}, + "shard1_1_1":{ + "range":"bfff0000-d554ffff", + "state":"active", + "replicas":{ + "core_node62":{ + "core":"COLL_1_shard1_1_1_replica_n60", + "base_url":"http://N_13/solr", + "node_name":"N_13_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node86":{ + "core":"COLL_1_shard1_1_1_replica_n85", + "base_url":"http://N_3to/solr", + "node_name":"N_3to_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node94":{ + "core":"COLL_1_shard1_1_1_replica_n93", + "base_url":"http://N_b9/solr", + "node_name":"N_b9_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040278815883523"}, + "shard2_1_0":{ + "range":"ffff0000-1553ffff", + "state":"active", + "replicas":{ + "core_node65":{ + "core":"COLL_1_shard2_1_0_replica_n63", + "base_url":"http://N_d4/solr", + "node_name":"N_d4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node96":{ + "core":"COLL_1_shard2_1_0_replica_n95", + "base_url":"http://N_16/solr", + "node_name":"N_16_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node104":{ + "core":"COLL_1_shard2_1_0_replica_n103", + "base_url":"http://N_74/solr", + "node_name":"N_74_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040347757791179"}, + "shard2_1_1":{ + "range":"15540000-2aa9ffff", + "state":"active", + "replicas":{ + "core_node66":{ + "core":"COLL_1_shard2_1_1_replica_n64", + "base_url":"http://N_d4/solr", + "node_name":"N_d4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node98":{ + "core":"COLL_1_shard2_1_1_replica_n97", + "base_url":"http://N_16/solr", + "node_name":"N_16_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node106":{ + "core":"COLL_1_shard2_1_1_replica_n105", + "base_url":"http://N_74/solr", + "node_name":"N_74_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040347757805057"}, + "shard2_0_0":{ + "range":"d5550000-eaa9ffff", + "state":"active", + "replicas":{ + "core_node69":{ + "core":"COLL_1_shard2_0_0_replica_n67", + "base_url":"http://N_d4/solr", + "node_name":"N_d4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node100":{ + "core":"COLL_1_shard2_0_0_replica_n99", + "base_url":"http://N_16/solr", + "node_name":"N_16_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node108":{ + "core":"COLL_1_shard2_0_0_replica_n107", + "base_url":"http://N_74/solr", + "node_name":"N_74_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040365925094823"}, + "shard2_0_1":{ + "range":"eaaa0000-fffeffff", + "state":"active", + "replicas":{ + "core_node70":{ + "core":"COLL_1_shard2_0_1_replica_n68", + "base_url":"http://N_d4/solr", + "node_name":"N_d4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node102":{ + "core":"COLL_1_shard2_0_1_replica_n101", + "base_url":"http://N_16/solr", + "node_name":"N_16_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node110":{ + "core":"COLL_1_shard2_0_1_replica_n109", + "base_url":"http://N_74/solr", + "node_name":"N_74_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040365925105897"}, + "shard3_0_0":{ + "range":"2aaa0000-3ffeffff", + "state":"active", + "replicas":{ + "core_node73":{ + "core":"COLL_1_shard3_0_0_replica_n71", + "base_url":"http://N_3a/solr", + "node_name":"N_3a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node112":{ + "core":"COLL_1_shard3_0_0_replica_n111", + "base_url":"http://N_do/solr", + "node_name":"N_do_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node120":{ + "core":"COLL_1_shard3_0_0_replica_n119", + "base_url":"http://N_v/solr", + "node_name":"N_v_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040222670106007"}, + "shard3_0_1":{ + "range":"3fff0000-5554ffff", + "state":"active", + "replicas":{ + "core_node74":{ + "core":"COLL_1_shard3_0_1_replica_n72", + "base_url":"http://N_3a/solr", + "node_name":"N_3a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node114":{ + "core":"COLL_1_shard3_0_1_replica_n113", + "base_url":"http://N_do/solr", + "node_name":"N_do_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node122":{ + "core":"COLL_1_shard3_0_1_replica_n121", + "base_url":"http://N_v/solr", + "node_name":"N_v_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040222670118507"}, + "shard3_1_0":{ + "range":"55550000-6aa9ffff", + "state":"active", + "replicas":{ + "core_node77":{ + "core":"COLL_1_shard3_1_0_replica_n75", + "base_url":"http://N_3a/solr", + "node_name":"N_3a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node116":{ + "core":"COLL_1_shard3_1_0_replica_n115", + "base_url":"http://N_do/solr", + "node_name":"N_do_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node124":{ + "core":"COLL_1_shard3_1_0_replica_n123", + "base_url":"http://N_v/solr", + "node_name":"N_v_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040233681530342"}, + "shard3_1_1":{ + "range":"6aaa0000-7fffffff", + "state":"active", + "replicas":{ + "core_node78":{ + "core":"COLL_1_shard3_1_1_replica_n76", + "base_url":"http://N_3a/solr", + "node_name":"N_3a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node118":{ + "core":"COLL_1_shard3_1_1_replica_n117", + "base_url":"http://N_do/solr", + "node_name":"N_do_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node126":{ + "core":"COLL_1_shard3_1_1_replica_n125", + "base_url":"http://N_v/solr", + "node_name":"N_v_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1562040233681548279"}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "version":0, + "COLL_4":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_4_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node5":{ + "core":"COLL_4_shard1_replica_n2", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node6":{ + "core":"COLL_4_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_2":{ + "pullReplicas":"0", + "replicationFactor":"2", + "shards":{ + "shard1_0_0":{ + "range":"80000000-838dffff", + "state":"active", + "replicas":{ + "core_node1717":{ + "core":"COLL_2_shard1_0_0_replica_n1716", + "base_url":"http://N_z/solr", + "node_name":"N_z_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1725":{ + "core":"COLL_2_shard1_0_0_replica_n1724", + "base_url":"http://N_5/solr", + "node_name":"N_5_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1729":{ + "core":"COLL_2_shard1_0_0_replica_n1728", + "base_url":"http://N_1h/solr", + "node_name":"N_1h_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565148935777897324"}, + "shard1_0_1":{ + "range":"838e0000-871bffff", + "state":"active", + "replicas":{ + "core_node1669":{ + "core":"COLL_2_shard1_0_1_replica_n1668", + "base_url":"http://N_5/solr", + "node_name":"N_5_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1677":{ + "core":"COLL_2_shard1_0_1_replica_n1676", + "base_url":"http://N_2w/solr", + "node_name":"N_2w_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1719":{ + "core":"COLL_2_shard1_0_1_replica_n1718", + "base_url":"http://N_e/solr", + "node_name":"N_e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565148935777884238"}, + "shard1_1_0":{ + "range":"871c0000-8aa9ffff", + "state":"active", + "replicas":{ + "core_node471":{ + "core":"COLL_2_shard1_1_0_replica_n1", + "base_url":"http://N_dj/solr", + "node_name":"N_dj_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1679":{ + "core":"COLL_2_shard1_1_0_replica_n1678", + "base_url":"http://N_1m/solr", + "node_name":"N_1m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1721":{ + "core":"COLL_2_shard1_1_0_replica_n1720", + "base_url":"http://N_5/solr", + "node_name":"N_5_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565151683385910884"}, + "shard1_1_1":{ + "range":"8aaa0000-8e37ffff", + "state":"active", + "replicas":{ + "core_node418":{ + "core":"COLL_2_shard1_1_1_replica_n416", + "base_url":"http://N_5/solr", + "node_name":"N_5_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node474":{ + "core":"COLL_2_shard1_1_1_replica_n2", + "base_url":"http://N_3/solr", + "node_name":"N_3_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1807":{ + "core":"COLL_2_shard1_1_1_replica_n1806", + "base_url":"http://N_2w/solr", + "node_name":"N_2w_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565151683385930901"}, + "shard3_1_0":{ + "range":"a38d0000-a71affff", + "state":"active", + "replicas":{ + "core_node425":{ + "core":"COLL_2_shard3_1_0_replica_n423", + "base_url":"http://N_1d/solr", + "node_name":"N_1d_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node459":{ + "core":"COLL_2_shard3_1_0_replica_n1", + "base_url":"http://N_6/solr", + "node_name":"N_6_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node460":{ + "core":"COLL_2_shard3_1_0_replica_n2", + "base_url":"http://N_aw/solr", + "node_name":"N_aw_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565145109110689908"}, + "shard3_1_1":{ + "range":"a71b0000-aaa9ffff", + "state":"active", + "replicas":{ + "core_node426":{ + "core":"COLL_2_shard3_1_1_replica_n424", + "base_url":"http://N_1d/solr", + "node_name":"N_1d_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node461":{ + "core":"COLL_2_shard3_1_1_replica_n1", + "base_url":"http://N_2u/solr", + "node_name":"N_2u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node462":{ + "core":"COLL_2_shard3_1_1_replica_n2", + "base_url":"http://N_3a7/solr", + "node_name":"N_3a7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565145109110736393"}, + "shard9_0_0":{ + "range":"f1c70000-f554ffff", + "state":"active", + "replicas":{ + "core_node1683":{ + "core":"COLL_2_shard9_0_0_replica_n1682", + "base_url":"http://N_g/solr", + "node_name":"N_g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "property.preferredleader":"true"}, + "core_node1799":{ + "core":"COLL_2_shard9_0_0_replica_n1798", + "base_url":"http://N_6/solr", + "node_name":"N_6_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1815":{ + "core":"COLL_2_shard9_0_0_replica_n1814", + "base_url":"http://N_3/solr", + "node_name":"N_3_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565151698484117350"}, + "shard9_0_1":{ + "range":"f5550000-f8e2ffff", + "state":"active", + "replicas":{ + "core_node438":{ + "core":"COLL_2_shard9_0_1_replica_n436", + "base_url":"http://N_11/solr", + "node_name":"N_11_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node477":{ + "core":"COLL_2_shard9_0_1_replica_n1", + "base_url":"http://N_m/solr", + "node_name":"N_m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node478":{ + "core":"COLL_2_shard9_0_1_replica_n2", + "base_url":"http://N_2/solr", + "node_name":"N_2_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565151698484109022"}, + "shard4_0_0":{ + "range":"aaaa0000-ae37ffff", + "state":"active", + "replicas":{ + "core_node445":{ + "core":"COLL_2_shard4_0_0_replica_n443", + "base_url":"http://N_6c/solr", + "node_name":"N_6c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node520":{ + "core":"COLL_2_shard4_0_0_replica_n2", + "base_url":"http://N_6/solr", + "node_name":"N_6_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1737":{ + "core":"COLL_2_shard4_0_0_replica_n1736", + "base_url":"http://N_3/solr", + "node_name":"N_3_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565158279227348339"}, + "shard4_0_1":{ + "range":"ae380000-b1c5ffff", + "state":"active", + "replicas":{ + "core_node446":{ + "core":"COLL_2_shard4_0_1_replica_n444", + "base_url":"http://N_6c/solr", + "node_name":"N_6c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1773":{ + "core":"COLL_2_shard4_0_1_replica_n1772", + "base_url":"http://N_303/solr", + "node_name":"N_303_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1803":{ + "core":"COLL_2_shard4_0_1_replica_n1802", + "base_url":"http://N_6/solr", + "node_name":"N_6_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565158279227361478"}, + "shard4_1_0":{ + "range":"b1c60000-b553ffff", + "state":"active", + "replicas":{ + "core_node457":{ + "core":"COLL_2_shard4_1_0_replica_n455", + "base_url":"http://N_6c/solr", + "node_name":"N_6c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node523":{ + "core":"COLL_2_shard4_1_0_replica_n1", + "base_url":"http://N_3/solr", + "node_name":"N_3_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1775":{ + "core":"COLL_2_shard4_1_0_replica_n1774", + "base_url":"http://N_2w/solr", + "node_name":"N_2w_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565161247490072659"}, + "shard4_1_1":{ + "range":"b5540000-b8e2ffff", + "state":"active", + "replicas":{ + "core_node458":{ + "core":"COLL_2_shard4_1_1_replica_n456", + "base_url":"http://N_6c/solr", + "node_name":"N_6c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node525":{ + "core":"COLL_2_shard4_1_1_replica_n1", + "base_url":"http://N_aw/solr", + "node_name":"N_aw_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1805":{ + "core":"COLL_2_shard4_1_1_replica_n1804", + "base_url":"http://N_2w/solr", + "node_name":"N_2w_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565161247490078977"}, + "shard3_0_0":{ + "range":"9c710000-9ffeffff", + "state":"active", + "replicas":{ + "core_node543":{ + "core":"COLL_2_shard3_0_0_replica_n1", + "base_url":"http://N_65p/solr", + "node_name":"N_65p_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node544":{ + "core":"COLL_2_shard3_0_0_replica_n2", + "base_url":"http://N_303/solr", + "node_name":"N_303_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1809":{ + "core":"COLL_2_shard3_0_0_replica_n1808", + "base_url":"http://N_a/solr", + "node_name":"N_a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565183961448368559"}, + "shard3_0_1":{ + "range":"9fff0000-a38cffff", + "state":"active", + "replicas":{ + "core_node510":{ + "core":"COLL_2_shard3_0_1_replica_n508", + "base_url":"http://N_1h/solr", + "node_name":"N_1h_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node545":{ + "core":"COLL_2_shard3_0_1_replica_n1", + "base_url":"http://N_65p/solr", + "node_name":"N_65p_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node546":{ + "core":"COLL_2_shard3_0_1_replica_n2", + "base_url":"http://N_4f/solr", + "node_name":"N_4f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565183961448383802"}, + "shard12_1_0":{ + "range":"238d0000-271affff", + "state":"active", + "replicas":{ + "core_node659":{ + "core":"COLL_2_shard12_1_0_replica_n1", + "base_url":"http://N_aw/solr", + "node_name":"N_aw_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node660":{ + "core":"COLL_2_shard12_1_0_replica_n2", + "base_url":"http://N_2u/solr", + "node_name":"N_2u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1789":{ + "core":"COLL_2_shard12_1_0_replica_n1788", + "base_url":"http://N_1d/solr", + "node_name":"N_1d_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565207157854150844"}, + "shard12_1_1":{ + "range":"271b0000-2aa9ffff", + "state":"active", + "replicas":{ + "core_node586":{ + "core":"COLL_2_shard12_1_1_replica_n584", + "base_url":"http://N_1/solr", + "node_name":"N_1_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node661":{ + "core":"COLL_2_shard12_1_1_replica_n1", + "base_url":"http://N_aw/solr", + "node_name":"N_aw_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node662":{ + "core":"COLL_2_shard12_1_1_replica_n2", + "base_url":"http://N_11/solr", + "node_name":"N_11_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565207157854141908"}, + "shard15_0_0":{ + "range":"471c0000-4aa9ffff", + "state":"active", + "replicas":{ + "core_node609":{ + "core":"COLL_2_shard15_0_0_replica_n607", + "base_url":"http://N_7/solr", + "node_name":"N_7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node731":{ + "core":"COLL_2_shard15_0_0_replica_n1", + "base_url":"http://N_e/solr", + "node_name":"N_e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node732":{ + "core":"COLL_2_shard15_0_0_replica_n2", + "base_url":"http://N_1d/solr", + "node_name":"N_1d_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565218606036002434"}, + "shard15_0_1":{ + "range":"4aaa0000-4e37ffff", + "state":"active", + "replicas":{ + "core_node610":{ + "core":"COLL_2_shard15_0_1_replica_n608", + "base_url":"http://N_7/solr", + "node_name":"N_7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node734":{ + "core":"COLL_2_shard15_0_1_replica_n2", + "base_url":"http://N_u/solr", + "node_name":"N_u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1817":{ + "core":"COLL_2_shard15_0_1_replica_n1816", + "base_url":"http://N_aw/solr", + "node_name":"N_aw_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565218606035996309"}, + "shard18_1_0":{ + "range":"78e30000-7c70ffff", + "state":"active", + "replicas":{ + "core_node625":{ + "core":"COLL_2_shard18_1_0_replica_n623", + "base_url":"http://N_4g/solr", + "node_name":"N_4g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node671":{ + "core":"COLL_2_shard18_1_0_replica_n1", + "base_url":"http://N_2w/solr", + "node_name":"N_2w_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node672":{ + "core":"COLL_2_shard18_1_0_replica_n2", + "base_url":"http://N_e/solr", + "node_name":"N_e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565207836146608524"}, + "shard18_1_1":{ + "range":"7c710000-7fffffff", + "state":"active", + "replicas":{ + "core_node626":{ + "core":"COLL_2_shard18_1_1_replica_n624", + "base_url":"http://N_4g/solr", + "node_name":"N_4g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node673":{ + "core":"COLL_2_shard18_1_1_replica_n1", + "base_url":"http://N_2w/solr", + "node_name":"N_2w_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1821":{ + "core":"COLL_2_shard18_1_1_replica_n1820", + "base_url":"http://N_aw/solr", + "node_name":"N_aw_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565207836146601465"}, + "shard11_1_0":{ + "range":"15540000-18e1ffff", + "state":"active", + "replicas":{ + "core_node779":{ + "core":"COLL_2_shard11_1_0_replica_n778", + "base_url":"http://N_1f/solr", + "node_name":"N_1f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node781":{ + "core":"COLL_2_shard11_1_0_replica_n780", + "base_url":"http://N_9o/solr", + "node_name":"N_9o_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1791":{ + "core":"COLL_2_shard11_1_0_replica_n1790", + "base_url":"http://N_t/solr", + "node_name":"N_t_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565245269658561257"}, + "shard7_0_0":{ + "range":"d5550000-d8e2ffff", + "state":"active", + "replicas":{ + "core_node766":{ + "core":"COLL_2_shard7_0_0_replica_n764", + "base_url":"http://N_9o/solr", + "node_name":"N_9o_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node774":{ + "core":"COLL_2_shard7_0_0_replica_n1", + "base_url":"http://N_65p/solr", + "node_name":"N_65p_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node775":{ + "core":"COLL_2_shard7_0_0_replica_n2", + "base_url":"http://N_3a7/solr", + "node_name":"N_3a7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565248636417965858"}, + "shard11_1_1":{ + "range":"18e20000-1c70ffff", + "state":"active", + "replicas":{ + "core_node768":{ + "core":"COLL_2_shard11_1_1_replica_n762", + "base_url":"http://N_17/solr", + "node_name":"N_17_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node783":{ + "core":"COLL_2_shard11_1_1_replica_n782", + "base_url":"http://N_1f/solr", + "node_name":"N_1f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node785":{ + "core":"COLL_2_shard11_1_1_replica_n784", + "base_url":"http://N_9o/solr", + "node_name":"N_9o_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565245269658580580"}, + "shard7_0_1":{ + "range":"d8e30000-dc70ffff", + "state":"active", + "replicas":{ + "core_node769":{ + "core":"COLL_2_shard7_0_1_replica_n765", + "base_url":"http://N_9o/solr", + "node_name":"N_9o_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node776":{ + "core":"COLL_2_shard7_0_1_replica_n1", + "base_url":"http://N_2/solr", + "node_name":"N_2_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node777":{ + "core":"COLL_2_shard7_0_1_replica_n2", + "base_url":"http://N_29/solr", + "node_name":"N_29_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565248636417971231"}, + "shard18_0_0":{ + "range":"71c70000-7554ffff", + "state":"active", + "replicas":{ + "core_node874":{ + "core":"COLL_2_shard18_0_0_replica_n1", + "base_url":"http://N_1c/solr", + "node_name":"N_1c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node875":{ + "core":"COLL_2_shard18_0_0_replica_n2", + "base_url":"http://N_1/solr", + "node_name":"N_1_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1819":{ + "core":"COLL_2_shard18_0_0_replica_n1818", + "base_url":"http://N_e/solr", + "node_name":"N_e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565255619352465985"}, + "shard18_0_1":{ + "range":"75550000-78e2ffff", + "state":"active", + "replicas":{ + "core_node773":{ + "core":"COLL_2_shard18_0_1_replica_n771", + "base_url":"http://N_dj/solr", + "node_name":"N_dj_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node876":{ + "core":"COLL_2_shard18_0_1_replica_n1", + "base_url":"http://N_1c/solr", + "node_name":"N_1c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node877":{ + "core":"COLL_2_shard18_0_1_replica_n2", + "base_url":"http://N_17/solr", + "node_name":"N_17_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565255619352471980"}, + "shard2_0_0":{ + "range":"8e380000-91c5ffff", + "state":"active", + "replicas":{ + "core_node796":{ + "core":"COLL_2_shard2_0_0_replica_n794", + "base_url":"http://N_8/solr", + "node_name":"N_8_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node911":{ + "core":"COLL_2_shard2_0_0_replica_n910", + "base_url":"http://N_5/solr", + "node_name":"N_5_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1823":{ + "core":"COLL_2_shard2_0_0_replica_n1822", + "base_url":"http://N_3a7/solr", + "node_name":"N_3a7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565270983762975731"}, + "shard2_1_0":{ + "range":"95540000-98e1ffff", + "state":"active", + "replicas":{ + "core_node975":{ + "core":"COLL_2_shard2_1_0_replica_n974", + "base_url":"http://N_4f/solr", + "node_name":"N_4f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1681":{ + "core":"COLL_2_shard2_1_0_replica_n1680", + "base_url":"http://N_g/solr", + "node_name":"N_g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1727":{ + "core":"COLL_2_shard2_1_0_replica_n1726", + "base_url":"http://N_6i/solr", + "node_name":"N_6i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565271264820336969"}, + "shard2_0_1":{ + "range":"91c60000-9553ffff", + "state":"active", + "replicas":{ + "core_node800":{ + "core":"COLL_2_shard2_0_1_replica_n795", + "base_url":"http://N_8/solr", + "node_name":"N_8_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node915":{ + "core":"COLL_2_shard2_0_1_replica_n914", + "base_url":"http://N_4f/solr", + "node_name":"N_4f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node917":{ + "core":"COLL_2_shard2_0_1_replica_n916", + "base_url":"http://N_5/solr", + "node_name":"N_5_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565270983762987501"}, + "shard2_1_1":{ + "range":"98e20000-9c70ffff", + "state":"active", + "replicas":{ + "core_node979":{ + "core":"COLL_2_shard2_1_1_replica_n978", + "base_url":"http://N_6i/solr", + "node_name":"N_6i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1685":{ + "core":"COLL_2_shard2_1_1_replica_n1684", + "base_url":"http://N_4f/solr", + "node_name":"N_4f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1813":{ + "core":"COLL_2_shard2_1_1_replica_n1812", + "base_url":"http://N_4g/solr", + "node_name":"N_4g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565271264820364576"}, + "shard13_1_0":{ + "range":"31c60000-3553ffff", + "state":"active", + "replicas":{ + "core_node923":{ + "core":"COLL_2_shard13_1_0_replica_n922", + "base_url":"http://N_e/solr", + "node_name":"N_e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1689":{ + "core":"COLL_2_shard13_1_0_replica_n1688", + "base_url":"http://N_7/solr", + "node_name":"N_7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1763":{ + "core":"COLL_2_shard13_1_0_replica_n1762", + "base_url":"http://N_u/solr", + "node_name":"N_u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565268739309072068"}, + "shard13_1_1":{ + "range":"35540000-38e2ffff", + "state":"active", + "replicas":{ + "core_node808":{ + "core":"COLL_2_shard13_1_1_replica_n806", + "base_url":"http://N_7/solr", + "node_name":"N_7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node921":{ + "core":"COLL_2_shard13_1_1_replica_n920", + "base_url":"http://N_u/solr", + "node_name":"N_u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node925":{ + "core":"COLL_2_shard13_1_1_replica_n924", + "base_url":"http://N_e/solr", + "node_name":"N_e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565268739309062648"}, + "shard8_0_0":{ + "range":"e38e0000-e71bffff", + "state":"active", + "replicas":{ + "core_node887":{ + "core":"COLL_2_shard8_0_0_replica_n886", + "base_url":"http://N_1m/solr", + "node_name":"N_1m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1691":{ + "core":"COLL_2_shard8_0_0_replica_n1690", + "base_url":"http://N_29/solr", + "node_name":"N_29_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1731":{ + "core":"COLL_2_shard8_0_0_replica_n1730", + "base_url":"http://N_z/solr", + "node_name":"N_z_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565264342830784906"}, + "shard10_0_0":{ + "range":"0-38dffff", + "state":"active", + "replicas":{ + "core_node827":{ + "core":"COLL_2_shard10_0_0_replica_n825", + "base_url":"http://N_cs/solr", + "node_name":"N_cs_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node897":{ + "core":"COLL_2_shard10_0_0_replica_n896", + "base_url":"http://N_6i/solr", + "node_name":"N_6i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1733":{ + "core":"COLL_2_shard10_0_0_replica_n1732", + "base_url":"http://N_t/solr", + "node_name":"N_t_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565267042378799051"}, + "shard10_0_1":{ + "range":"38e0000-71bffff", + "state":"active", + "replicas":{ + "core_node828":{ + "core":"COLL_2_shard10_0_1_replica_n826", + "base_url":"http://N_cs/solr", + "node_name":"N_cs_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node905":{ + "core":"COLL_2_shard10_0_1_replica_n904", + "base_url":"http://N_t/solr", + "node_name":"N_t_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1739":{ + "core":"COLL_2_shard10_0_1_replica_n1738", + "base_url":"http://N_6i/solr", + "node_name":"N_6i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565267042378772588"}, + "shard10_1_0":{ + "range":"71c0000-aa9ffff", + "state":"active", + "replicas":{ + "core_node831":{ + "core":"COLL_2_shard10_1_0_replica_n829", + "base_url":"http://N_6i/solr", + "node_name":"N_6i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1693":{ + "core":"COLL_2_shard10_1_0_replica_n1692", + "base_url":"http://N_1i/solr", + "node_name":"N_1i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1797":{ + "core":"COLL_2_shard10_1_0_replica_n1796", + "base_url":"http://N_65p/solr", + "node_name":"N_65p_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565264436499940709"}, + "shard8_0_1":{ + "range":"e71c0000-eaa9ffff", + "state":"active", + "replicas":{ + "core_node893":{ + "core":"COLL_2_shard8_0_1_replica_n892", + "base_url":"http://N_1m/solr", + "node_name":"N_1m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1695":{ + "core":"COLL_2_shard8_0_1_replica_n1694", + "base_url":"http://N_z/solr", + "node_name":"N_z_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1787":{ + "core":"COLL_2_shard8_0_1_replica_n1786", + "base_url":"http://N_29/solr", + "node_name":"N_29_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565264342830792972"}, + "shard14_1_0":{ + "range":"3fff0000-438cffff", + "state":"active", + "replicas":{ + "core_node835":{ + "core":"COLL_2_shard14_1_0_replica_n833", + "base_url":"http://N_a/solr", + "node_name":"N_a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1127":{ + "core":"COLL_2_shard14_1_0_replica_n1126", + "base_url":"http://N_z/solr", + "node_name":"N_z_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1129":{ + "core":"COLL_2_shard14_1_0_replica_n1128", + "base_url":"http://N_1d/solr", + "node_name":"N_1d_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565264301050142265"}, + "shard14_1_1":{ + "range":"438d0000-471bffff", + "state":"active", + "replicas":{ + "core_node836":{ + "core":"COLL_2_shard14_1_1_replica_n834", + "base_url":"http://N_a/solr", + "node_name":"N_a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1741":{ + "core":"COLL_2_shard14_1_1_replica_n1740", + "base_url":"http://N_1d/solr", + "node_name":"N_1d_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1825":{ + "core":"COLL_2_shard14_1_1_replica_n1824", + "base_url":"http://N_3a7/solr", + "node_name":"N_3a7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565264301050133844"}, + "shard14_0_0":{ + "range":"38e30000-3c70ffff", + "state":"active", + "replicas":{ + "core_node839":{ + "core":"COLL_2_shard14_0_0_replica_n837", + "base_url":"http://N_3a7/solr", + "node_name":"N_3a7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1119":{ + "core":"COLL_2_shard14_0_0_replica_n1118", + "base_url":"http://N_a/solr", + "node_name":"N_a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1121":{ + "core":"COLL_2_shard14_0_0_replica_n1120", + "base_url":"http://N_17/solr", + "node_name":"N_17_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565265507181833703"}, + "shard10_1_1":{ + "range":"aaa0000-e37ffff", + "state":"active", + "replicas":{ + "core_node840":{ + "core":"COLL_2_shard10_1_1_replica_n830", + "base_url":"http://N_6i/solr", + "node_name":"N_6i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1743":{ + "core":"COLL_2_shard10_1_1_replica_n1742", + "base_url":"http://N_t/solr", + "node_name":"N_t_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1779":{ + "core":"COLL_2_shard10_1_1_replica_n1778", + "base_url":"http://N_1i/solr", + "node_name":"N_1i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565264436499929417"}, + "shard14_0_1":{ + "range":"3c710000-3ffeffff", + "state":"active", + "replicas":{ + "core_node841":{ + "core":"COLL_2_shard14_0_1_replica_n838", + "base_url":"http://N_3a7/solr", + "node_name":"N_3a7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1123":{ + "core":"COLL_2_shard14_0_1_replica_n1122", + "base_url":"http://N_17/solr", + "node_name":"N_17_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1125":{ + "core":"COLL_2_shard14_0_1_replica_n1124", + "base_url":"http://N_a/solr", + "node_name":"N_a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565265507181840877"}, + "shard17_0_0":{ + "range":"638e0000-671bffff", + "state":"active", + "replicas":{ + "core_node844":{ + "core":"COLL_2_shard17_0_0_replica_n842", + "base_url":"http://N_6c/solr", + "node_name":"N_6c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1735":{ + "core":"COLL_2_shard17_0_0_replica_n1734", + "base_url":"http://N_2u/solr", + "node_name":"N_2u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1781":{ + "core":"COLL_2_shard17_0_0_replica_n1780", + "base_url":"http://N_1i/solr", + "node_name":"N_1i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565266637880800687"}, + "shard17_0_1":{ + "range":"671c0000-6aa9ffff", + "state":"active", + "replicas":{ + "core_node848":{ + "core":"COLL_2_shard17_0_1_replica_n843", + "base_url":"http://N_6c/solr", + "node_name":"N_6c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1115":{ + "core":"COLL_2_shard17_0_1_replica_n1114", + "base_url":"http://N_2u/solr", + "node_name":"N_2u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1117":{ + "core":"COLL_2_shard17_0_1_replica_n1116", + "base_url":"http://N_1i/solr", + "node_name":"N_1i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565266637880794287"}, + "shard16_1_0":{ + "range":"5c710000-5ffeffff", + "state":"active", + "replicas":{ + "core_node852":{ + "core":"COLL_2_shard16_1_0_replica_n850", + "base_url":"http://N_8/solr", + "node_name":"N_8_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node991":{ + "core":"COLL_2_shard16_1_0_replica_n990", + "base_url":"http://N_3/solr", + "node_name":"N_3_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node993":{ + "core":"COLL_2_shard16_1_0_replica_n992", + "base_url":"http://N_1/solr", + "node_name":"N_1_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275919174780002"}, + "shard16_1_1":{ + "range":"5fff0000-638dffff", + "state":"active", + "replicas":{ + "core_node853":{ + "core":"COLL_2_shard16_1_1_replica_n851", + "base_url":"http://N_8/solr", + "node_name":"N_8_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node995":{ + "core":"COLL_2_shard16_1_1_replica_n994", + "base_url":"http://N_1/solr", + "node_name":"N_1_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node997":{ + "core":"COLL_2_shard16_1_1_replica_n996", + "base_url":"http://N_3/solr", + "node_name":"N_3_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275919174771365"}, + "shard16_0_0":{ + "range":"55550000-58e2ffff", + "state":"active", + "replicas":{ + "core_node856":{ + "core":"COLL_2_shard16_0_0_replica_n854", + "base_url":"http://N_8/solr", + "node_name":"N_8_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node983":{ + "core":"COLL_2_shard16_0_0_replica_n982", + "base_url":"http://N_1/solr", + "node_name":"N_1_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1785":{ + "core":"COLL_2_shard16_0_0_replica_n1784", + "base_url":"http://N_303/solr", + "node_name":"N_303_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275747479472229"}, + "shard16_0_1":{ + "range":"58e30000-5c70ffff", + "state":"active", + "replicas":{ + "core_node857":{ + "core":"COLL_2_shard16_0_1_replica_n855", + "base_url":"http://N_8/solr", + "node_name":"N_8_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node987":{ + "core":"COLL_2_shard16_0_1_replica_n986", + "base_url":"http://N_303/solr", + "node_name":"N_303_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node989":{ + "core":"COLL_2_shard16_0_1_replica_n988", + "base_url":"http://N_1/solr", + "node_name":"N_1_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275747479466413"}, + "shard5_1_0":{ + "range":"bfff0000-c38cffff", + "state":"active", + "replicas":{ + "core_node1135":{ + "core":"COLL_2_shard5_1_0_replica_n1134", + "base_url":"http://N_1c/solr", + "node_name":"N_1c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1137":{ + "core":"COLL_2_shard5_1_0_replica_n1136", + "base_url":"http://N_2/solr", + "node_name":"N_2_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1783":{ + "core":"COLL_2_shard5_1_0_replica_n1782", + "base_url":"http://N_g/solr", + "node_name":"N_g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275178824240086"}, + "shard5_1_1":{ + "range":"c38d0000-c71bffff", + "state":"active", + "replicas":{ + "core_node861":{ + "core":"COLL_2_shard5_1_1_replica_n859", + "base_url":"http://N_g/solr", + "node_name":"N_g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1139":{ + "core":"COLL_2_shard5_1_1_replica_n1138", + "base_url":"http://N_2/solr", + "node_name":"N_2_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1141":{ + "core":"COLL_2_shard5_1_1_replica_n1140", + "base_url":"http://N_1c/solr", + "node_name":"N_1c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565275178824249126"}, + "shard5_0_0":{ + "range":"b8e30000-bc70ffff", + "state":"active", + "replicas":{ + "core_node999":{ + "core":"COLL_2_shard5_0_0_replica_n998", + "base_url":"http://N_1c/solr", + "node_name":"N_1c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1001":{ + "core":"COLL_2_shard5_0_0_replica_n1000", + "base_url":"http://N_1f/solr", + "node_name":"N_1f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1769":{ + "core":"COLL_2_shard5_0_0_replica_n1768", + "base_url":"http://N_g/solr", + "node_name":"N_g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275212524831473"}, + "shard5_0_1":{ + "range":"bc710000-bffeffff", + "state":"active", + "replicas":{ + "core_node1003":{ + "core":"COLL_2_shard5_0_1_replica_n1002", + "base_url":"http://N_1f/solr", + "node_name":"N_1f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1703":{ + "core":"COLL_2_shard5_0_1_replica_n1702", + "base_url":"http://N_1c/solr", + "node_name":"N_1c_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1771":{ + "core":"COLL_2_shard5_0_1_replica_n1770", + "base_url":"http://N_g/solr", + "node_name":"N_g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565275212524825994"}, + "shard7_1_0":{ + "range":"dc710000-dffeffff", + "state":"active", + "replicas":{ + "core_node928":{ + "core":"COLL_2_shard7_1_0_replica_n926", + "base_url":"http://N_dj/solr", + "node_name":"N_dj_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1143":{ + "core":"COLL_2_shard7_1_0_replica_n1142", + "base_url":"http://N_29/solr", + "node_name":"N_29_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1145":{ + "core":"COLL_2_shard7_1_0_replica_n1144", + "base_url":"http://N_1h/solr", + "node_name":"N_1h_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565302558938511755"}, + "shard9_1_0":{ + "range":"f8e30000-fc70ffff", + "state":"active", + "replicas":{ + "core_node931":{ + "core":"COLL_2_shard9_1_0_replica_n929", + "base_url":"http://N_4g/solr", + "node_name":"N_4g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1151":{ + "core":"COLL_2_shard9_1_0_replica_n1150", + "base_url":"http://N_303/solr", + "node_name":"N_303_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1153":{ + "core":"COLL_2_shard9_1_0_replica_n1152", + "base_url":"http://N_11/solr", + "node_name":"N_11_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565302364380675715"}, + "shard6_1_0":{ + "range":"ce380000-d1c5ffff", + "state":"active", + "replicas":{ + "core_node937":{ + "core":"COLL_2_shard6_1_0_replica_n935", + "base_url":"http://N_cs/solr", + "node_name":"N_cs_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1167":{ + "core":"COLL_2_shard6_1_0_replica_n1166", + "base_url":"http://N_1m/solr", + "node_name":"N_1m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1793":{ + "core":"COLL_2_shard6_1_0_replica_n1792", + "base_url":"http://N_29/solr", + "node_name":"N_29_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565308352274112068"}, + "shard7_1_1":{ + "range":"dfff0000-e38dffff", + "state":"active", + "replicas":{ + "core_node941":{ + "core":"COLL_2_shard7_1_1_replica_n927", + "base_url":"http://N_dj/solr", + "node_name":"N_dj_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1701":{ + "core":"COLL_2_shard7_1_1_replica_n1700", + "base_url":"http://N_1h/solr", + "node_name":"N_1h_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1759":{ + "core":"COLL_2_shard7_1_1_replica_n1758", + "base_url":"http://N_29/solr", + "node_name":"N_29_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565302558938518446"}, + "shard9_1_1":{ + "range":"fc710000-ffffffff", + "state":"active", + "replicas":{ + "core_node944":{ + "core":"COLL_2_shard9_1_1_replica_n930", + "base_url":"http://N_4g/solr", + "node_name":"N_4g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1155":{ + "core":"COLL_2_shard9_1_1_replica_n1154", + "base_url":"http://N_11/solr", + "node_name":"N_11_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1163":{ + "core":"COLL_2_shard9_1_1_replica_n1162", + "base_url":"http://N_303/solr", + "node_name":"N_303_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565302364380668948"}, + "shard6_1_1":{ + "range":"d1c60000-d554ffff", + "state":"active", + "replicas":{ + "core_node1171":{ + "core":"COLL_2_shard6_1_1_replica_n1170", + "base_url":"http://N_m/solr", + "node_name":"N_m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1705":{ + "core":"COLL_2_shard6_1_1_replica_n1704", + "base_url":"http://N_cs/solr", + "node_name":"N_cs_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1745":{ + "core":"COLL_2_shard6_1_1_replica_n1744", + "base_url":"http://N_1m/solr", + "node_name":"N_1m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565308352274105667"}, + "shard15_1_0":{ + "range":"4e380000-51c5ffff", + "state":"active", + "replicas":{ + "core_node955":{ + "core":"COLL_2_shard15_1_0_replica_n953", + "base_url":"http://N_cs/solr", + "node_name":"N_cs_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1173":{ + "core":"COLL_2_shard15_1_0_replica_n1172", + "base_url":"http://N_65p/solr", + "node_name":"N_65p_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1175":{ + "core":"COLL_2_shard15_1_0_replica_n1174", + "base_url":"http://N_a/solr", + "node_name":"N_a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565308280442325340"}, + "shard15_1_1":{ + "range":"51c60000-5554ffff", + "state":"active", + "replicas":{ + "core_node956":{ + "core":"COLL_2_shard15_1_1_replica_n954", + "base_url":"http://N_cs/solr", + "node_name":"N_cs_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1709":{ + "core":"COLL_2_shard15_1_1_replica_n1708", + "base_url":"http://N_6/solr", + "node_name":"N_6_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1747":{ + "core":"COLL_2_shard15_1_1_replica_n1746", + "base_url":"http://N_65p/solr", + "node_name":"N_65p_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565308280442332742"}, + "shard6_0_0":{ + "range":"c71c0000-caa9ffff", + "state":"active", + "replicas":{ + "core_node1182":{ + "core":"COLL_2_shard6_0_0_replica_n1180", + "base_url":"http://N_4f/solr", + "node_name":"N_4f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1208":{ + "core":"COLL_2_shard6_0_0_replica_n1207", + "base_url":"http://N_m/solr", + "node_name":"N_m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1210":{ + "core":"COLL_2_shard6_0_0_replica_n1209", + "base_url":"http://N_11/solr", + "node_name":"N_11_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565327402584689595"}, + "shard11_0_0":{ + "range":"e380000-11c5ffff", + "state":"active", + "replicas":{ + "core_node1185":{ + "core":"COLL_2_shard11_0_0_replica_n1183", + "base_url":"http://N_t/solr", + "node_name":"N_t_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1217":{ + "core":"COLL_2_shard11_0_0_replica_n1216", + "base_url":"http://N_1f/solr", + "node_name":"N_1f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1219":{ + "core":"COLL_2_shard11_0_0_replica_n1218", + "base_url":"http://N_9o/solr", + "node_name":"N_9o_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565326848103929784"}, + "shard6_0_1":{ + "range":"caaa0000-ce37ffff", + "state":"active", + "replicas":{ + "core_node1189":{ + "core":"COLL_2_shard6_0_1_replica_n1181", + "base_url":"http://N_4f/solr", + "node_name":"N_4f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1212":{ + "core":"COLL_2_shard6_0_1_replica_n1211", + "base_url":"http://N_11/solr", + "node_name":"N_11_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1214":{ + "core":"COLL_2_shard6_0_1_replica_n1213", + "base_url":"http://N_m/solr", + "node_name":"N_m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565327402584696403"}, + "shard11_0_1":{ + "range":"11c60000-1553ffff", + "state":"active", + "replicas":{ + "core_node1195":{ + "core":"COLL_2_shard11_0_1_replica_n1184", + "base_url":"http://N_t/solr", + "node_name":"N_t_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1221":{ + "core":"COLL_2_shard11_0_1_replica_n1220", + "base_url":"http://N_9o/solr", + "node_name":"N_9o_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1223":{ + "core":"COLL_2_shard11_0_1_replica_n1222", + "base_url":"http://N_1f/solr", + "node_name":"N_1f_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565326848103918157"}, + "shard17_1_0":{ + "range":"6aaa0000-6e37ffff", + "state":"active", + "replicas":{ + "core_node1200":{ + "core":"COLL_2_shard17_1_0_replica_n1198", + "base_url":"http://N_1i/solr", + "node_name":"N_1i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1225":{ + "core":"COLL_2_shard17_1_0_replica_n1224", + "base_url":"http://N_2u/solr", + "node_name":"N_2u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1227":{ + "core":"COLL_2_shard17_1_0_replica_n1226", + "base_url":"http://N_m/solr", + "node_name":"N_m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565327203156720131"}, + "shard17_1_1":{ + "range":"6e380000-71c6ffff", + "state":"active", + "replicas":{ + "core_node1203":{ + "core":"COLL_2_shard17_1_1_replica_n1199", + "base_url":"http://N_1i/solr", + "node_name":"N_1i_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1229":{ + "core":"COLL_2_shard17_1_1_replica_n1228", + "base_url":"http://N_m/solr", + "node_name":"N_m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1231":{ + "core":"COLL_2_shard17_1_1_replica_n1230", + "base_url":"http://N_2u/solr", + "node_name":"N_2u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565327203156741532"}, + "shard12_0_0":{ + "range":"1c710000-1ffeffff", + "state":"active", + "replicas":{ + "core_node1249":{ + "core":"COLL_2_shard12_0_0_replica_n1248", + "base_url":"http://N_2/solr", + "node_name":"N_2_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1697":{ + "core":"COLL_2_shard12_0_0_replica_n1696", + "base_url":"http://N_1h/solr", + "node_name":"N_1h_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1751":{ + "core":"COLL_2_shard12_0_0_replica_n1750", + "base_url":"http://N_17/solr", + "node_name":"N_17_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565348748808724074"}, + "shard12_0_1":{ + "range":"1fff0000-238cffff", + "state":"active", + "replicas":{ + "core_node1255":{ + "core":"COLL_2_shard12_0_1_replica_n1254", + "base_url":"http://N_2/solr", + "node_name":"N_2_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1699":{ + "core":"COLL_2_shard12_0_1_replica_n1698", + "base_url":"http://N_17/solr", + "node_name":"N_17_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1761":{ + "core":"COLL_2_shard12_0_1_replica_n1760", + "base_url":"http://N_1h/solr", + "node_name":"N_1h_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565348748808712354"}, + "shard8_1_0":{ + "range":"eaaa0000-ee37ffff", + "state":"active", + "replicas":{ + "core_node1707":{ + "core":"COLL_2_shard8_1_0_replica_n1706", + "base_url":"http://N_z/solr", + "node_name":"N_z_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1765":{ + "core":"COLL_2_shard8_1_0_replica_n1764", + "base_url":"http://N_u/solr", + "node_name":"N_u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1811":{ + "core":"COLL_2_shard8_1_0_replica_n1810", + "base_url":"http://N_6/solr", + "node_name":"N_6_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565367832373747746"}, + "shard8_1_1":{ + "range":"ee380000-f1c6ffff", + "state":"active", + "replicas":{ + "core_node1711":{ + "core":"COLL_2_shard8_1_1_replica_n1710", + "base_url":"http://N_1m/solr", + "node_name":"N_1m_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1755":{ + "core":"COLL_2_shard8_1_1_replica_n1754", + "base_url":"http://N_z/solr", + "node_name":"N_z_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1795":{ + "core":"COLL_2_shard8_1_1_replica_n1794", + "base_url":"http://N_4g/solr", + "node_name":"N_4g_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565367832373770614"}, + "shard13_0_0":{ + "range":"2aaa0000-2e37ffff", + "state":"active", + "replicas":{ + "core_node1257":{ + "core":"COLL_2_shard13_0_0_replica_n1256", + "base_url":"http://N_u/solr", + "node_name":"N_u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1713":{ + "core":"COLL_2_shard13_0_0_replica_n1712", + "base_url":"http://N_7/solr", + "node_name":"N_7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1749":{ + "core":"COLL_2_shard13_0_0_replica_n1748", + "base_url":"http://N_dj/solr", + "node_name":"N_dj_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}, + "stateTimestamp":"1565369006475868394"}, + "shard13_0_1":{ + "range":"2e380000-31c5ffff", + "state":"active", + "replicas":{ + "core_node1263":{ + "core":"COLL_2_shard13_0_1_replica_n1262", + "base_url":"http://N_u/solr", + "node_name":"N_u_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node1715":{ + "core":"COLL_2_shard13_0_1_replica_n1714", + "base_url":"http://N_dj/solr", + "node_name":"N_dj_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node1767":{ + "core":"COLL_2_shard13_0_1_replica_n1766", + "base_url":"http://N_7/solr", + "node_name":"N_7_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}, + "stateTimestamp":"1565369006475856752"}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"2", + "tlogReplicas":"0"}, + "COLL_q":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_q_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_q_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_q_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_22":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node5":{ + "core":"COLL_22_shard1_replica_n2", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_22_shard1_replica_n4", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_22_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_1b":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_1b_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_1b_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_1b_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_5":{ + "pullReplicas":"0", + "replicationFactor":"1", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{"core_node2":{ + "core":"COLL_5_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"1", + "tlogReplicas":"0"}, + "COLL_1x":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_1x_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_1x_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_1x_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_l":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_l_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_l_shard1_replica_n4", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node10":{ + "core":"COLL_l_shard1_replica_n9", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_0":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{ + "shard1":{ + "range":"80000000-d554ffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_0_shard1_replica_n1", + "base_url":"http://N_d4/solr", + "node_name":"N_d4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node5":{ + "core":"COLL_0_shard1_replica_n2", + "base_url":"http://N_16/solr", + "node_name":"N_16_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node7":{ + "core":"COLL_0_shard1_replica_n4", + "base_url":"http://N_74/solr", + "node_name":"N_74_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}, + "shard2":{ + "range":"d5550000-2aa9ffff", + "state":"active", + "replicas":{ + "core_node9":{ + "core":"COLL_0_shard2_replica_n6", + "base_url":"http://N_b9/solr", + "node_name":"N_b9_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node11":{ + "core":"COLL_0_shard2_replica_n8", + "base_url":"http://N_3to/solr", + "node_name":"N_3to_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node13":{ + "core":"COLL_0_shard2_replica_n10", + "base_url":"http://N_13/solr", + "node_name":"N_13_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}, + "shard3":{ + "range":"2aaa0000-7fffffff", + "state":"active", + "replicas":{ + "core_node15":{ + "core":"COLL_0_shard3_replica_n12", + "base_url":"http://N_do/solr", + "node_name":"N_do_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}, + "core_node17":{ + "core":"COLL_0_shard3_replica_n14", + "base_url":"http://N_3a/solr", + "node_name":"N_3a_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node18":{ + "core":"COLL_0_shard3_replica_n16", + "base_url":"http://N_v/solr", + "node_name":"N_v_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}, + "COLL_6":{ + "pullReplicas":"0", + "replicationFactor":"3", + "shards":{"shard1":{ + "range":"80000000-7fffffff", + "state":"active", + "replicas":{ + "core_node3":{ + "core":"COLL_6_shard1_replica_n1", + "base_url":"http://N_7e/solr", + "node_name":"N_7e_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node5":{ + "core":"COLL_6_shard1_replica_n2", + "base_url":"http://N_4/solr", + "node_name":"N_4_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false"}, + "core_node6":{ + "core":"COLL_6_shard1_replica_n4", + "base_url":"http://N_0/solr", + "node_name":"N_0_solr", + "state":"active", + "type":"NRT", + "force_set_state":"false", + "leader":"true"}}}}, + "router":{"name":"compositeId"}, + "maxShardsPerNode":"1", + "autoAddReplicas":"true", + "nrtReplicas":"3", + "tlogReplicas":"0"}}} \ No newline at end of file diff --git a/solr/core/src/test-files/solr/simSnapshot/distribState.json b/solr/core/src/test-files/solr/simSnapshot/distribState.json new file mode 100644 index 00000000000..f59ab577e40 --- /dev/null +++ b/solr/core/src/test-files/solr/simSnapshot/distribState.json @@ -0,0 +1,206 @@ +{ + "/clusterstate.json":{ + "owner":"0", + "mode":"PERSISTENT", + "version":0}, + "/live_nodes":{ + "owner":"0", + "mode":"PERSISTENT", + "version":0}, + "/live_nodes/N_11_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_65p_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_8_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_74_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1i_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_4g_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_2_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_a_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1c_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_16_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_6c_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_v_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_3a_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1d_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_u_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_7_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_t_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_6i_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_d4_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_17_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1f_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_do_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_3_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_303_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_29_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_9o_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_7e_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1m_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_4_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_m_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_dj_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_e_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_13_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_g_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_2w_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_z_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_cs_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_3a7_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_aw_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_0_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_3to_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_4f_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_1h_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_2u_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_b9_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_6_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/live_nodes/N_5_solr":{ + "owner":"0", + "mode":"EPHEMERAL", + "version":0}, + "/autoscaling.json":{ + "owner":"0", + "mode":"PERSISTENT", + "data":"ewogICJjbHVzdGVyLXByZWZlcmVuY2VzIjpbCiAgICB7CiAgICAgICJtaW5pbWl6ZSI6ImNvcmVzIiwKICAgICAgInByZWNpc2lvbiI6MX0sCiAgICB7CiAgICAgICJtYXhpbWl6ZSI6ImZyZWVkaXNrIiwKICAgICAgInByZWNpc2lvbiI6MTB9XSwKICAiY2x1c3Rlci1wb2xpY3kiOlsKICAgIHsKICAgICAgInJlcGxpY2EiOiIjQUxMIiwKICAgICAgImNvbGxlY3Rpb24iOiJDT0xMXzIiLAogICAgICAic3lzcHJvcC5wb29sIjoicG9vbC0wMSJ9LAogICAgewogICAgICAicmVwbGljYSI6IiNBTEwiLAogICAgICAiY29sbGVjdGlvbiI6IkNPTExfMSIsCiAgICAgICJzeXNwcm9wLnBvb2wiOiJwb29sLTAyIn0sCiAgICB7CiAgICAgICJyZXBsaWNhIjoiI0FMTCIsCiAgICAgICJjb2xsZWN0aW9uIjoiQ09MTF8wIiwKICAgICAgInN5c3Byb3AucG9vbCI6InBvb2wtMDIifSwKICAgIHsKICAgICAgInJlcGxpY2EiOiI8MiIsCiAgICAgICJzaGFyZCI6IiNFQUNIIiwKICAgICAgIm5vZGUiOiIjQU5ZIn0sCiAgICB7CiAgICAgICJyZXBsaWNhIjoiI0VRVUFMIiwKICAgICAgInNoYXJkIjoiI0VBQ0giLAogICAgICAic3lzcHJvcC5heiI6IiNFQUNIIn1dLAogICJ0cmlnZ2VycyI6e30sCiAgImxpc3RlbmVycyI6e30sCiAgInByb3BlcnRpZXMiOnt9fQ==", + "version":0}} \ No newline at end of file diff --git a/solr/core/src/test-files/solr/simSnapshot/managerState.json b/solr/core/src/test-files/solr/simSnapshot/managerState.json new file mode 100644 index 00000000000..b96ebf4ca94 --- /dev/null +++ b/solr/core/src/test-files/solr/simSnapshot/managerState.json @@ -0,0 +1 @@ +{"timeSource":"SimTimeSource:50.0"} \ No newline at end of file diff --git a/solr/core/src/test-files/solr/simSnapshot/nodeState.json b/solr/core/src/test-files/solr/simSnapshot/nodeState.json new file mode 100644 index 00000000000..e923736bada --- /dev/null +++ b/solr/core/src/test-files/solr/simSnapshot/nodeState.json @@ -0,0 +1,3823 @@ +{ + "nodeValues":{ + "N_7e_solr":{ + "node":"N_7e_solr", + "isLive":true, + "cores":13, + "freedisk":873.6022491455078, + "sysprop.pool":"pool-03", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875}, + "N_0_solr":{ + "node":"N_0_solr", + "isLive":true, + "cores":12, + "freedisk":719.6562576293945, + "sysprop.pool":"pool-03", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875}, + "N_4_solr":{ + "node":"N_4_solr", + "isLive":true, + "cores":12, + "freedisk":875.4758682250977, + "sysprop.pool":"pool-03", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875}, + "N_g_solr":{ + "node":"N_g_solr", + "isLive":true, + "cores":6, + "freedisk":4007.3253440856934, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_17_solr":{ + "node":"N_17_solr", + "isLive":true, + "cores":6, + "freedisk":4093.756145477295, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_303_solr":{ + "node":"N_303_solr", + "isLive":true, + "cores":6, + "freedisk":4111.4668045043945, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_dj_solr":{ + "node":"N_dj_solr", + "isLive":true, + "cores":6, + "freedisk":4162.087951660156, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_1c_solr":{ + "node":"N_1c_solr", + "isLive":true, + "cores":6, + "freedisk":4181.229598999023, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_z_solr":{ + "node":"N_z_solr", + "isLive":true, + "cores":6, + "freedisk":4215.115695953369, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_6_solr":{ + "node":"N_6_solr", + "isLive":true, + "cores":6, + "freedisk":4252.47643661499, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_1m_solr":{ + "node":"N_1m_solr", + "isLive":true, + "cores":6, + "freedisk":4257.921604156494, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_4g_solr":{ + "node":"N_4g_solr", + "isLive":true, + "cores":6, + "freedisk":4259.9677734375, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_65p_solr":{ + "node":"N_65p_solr", + "isLive":true, + "cores":6, + "freedisk":4260.997627258301, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_u_solr":{ + "node":"N_u_solr", + "isLive":true, + "cores":6, + "freedisk":4260.821304321289, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_1f_solr":{ + "node":"N_1f_solr", + "isLive":true, + "cores":6, + "freedisk":4260.807849884033, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_cs_solr":{ + "node":"N_cs_solr", + "isLive":true, + "cores":6, + "freedisk":4260.629165649414, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_8_solr":{ + "node":"N_8_solr", + "isLive":true, + "cores":6, + "freedisk":4262.037788391113, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_a_solr":{ + "node":"N_a_solr", + "isLive":true, + "cores":6, + "freedisk":4262.172649383545, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_3a7_solr":{ + "node":"N_3a7_solr", + "isLive":true, + "cores":6, + "freedisk":4263.317134857178, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_11_solr":{ + "node":"N_11_solr", + "isLive":true, + "cores":6, + "freedisk":4264.325901031494, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_4f_solr":{ + "node":"N_4f_solr", + "isLive":true, + "cores":6, + "freedisk":4264.210151672363, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_1i_solr":{ + "node":"N_1i_solr", + "isLive":true, + "cores":6, + "freedisk":4266.027156829834, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_9o_solr":{ + "node":"N_9o_solr", + "isLive":true, + "cores":6, + "freedisk":4265.881809234619, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_2_solr":{ + "node":"N_2_solr", + "isLive":true, + "cores":6, + "freedisk":4266.604637145996, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_t_solr":{ + "node":"N_t_solr", + "isLive":true, + "cores":6, + "freedisk":4266.856658935547, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_2u_solr":{ + "node":"N_2u_solr", + "isLive":true, + "cores":6, + "freedisk":4266.648368835449, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_m_solr":{ + "node":"N_m_solr", + "isLive":true, + "cores":6, + "freedisk":4267.171646118164, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_7_solr":{ + "node":"N_7_solr", + "isLive":true, + "cores":6, + "freedisk":4268.472709655762, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_6c_solr":{ + "node":"N_6c_solr", + "isLive":true, + "cores":6, + "freedisk":4269.135753631592, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_6i_solr":{ + "node":"N_6i_solr", + "isLive":true, + "cores":6, + "freedisk":4269.712917327881, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_3_solr":{ + "node":"N_3_solr", + "isLive":true, + "cores":6, + "freedisk":4272.45711517334, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_1d_solr":{ + "node":"N_1d_solr", + "isLive":true, + "cores":6, + "freedisk":4273.009799957275, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_1_solr":{ + "node":"N_1_solr", + "isLive":true, + "cores":6, + "freedisk":4274.765396118164, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_aw_solr":{ + "node":"N_aw_solr", + "isLive":true, + "cores":6, + "freedisk":4276.759601593018, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_1h_solr":{ + "node":"N_1h_solr", + "isLive":true, + "cores":6, + "freedisk":4297.329685211182, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_29_solr":{ + "node":"N_29_solr", + "isLive":true, + "cores":6, + "freedisk":4303.548599243164, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_e_solr":{ + "node":"N_e_solr", + "isLive":true, + "cores":6, + "freedisk":4334.874732971191, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625}, + "N_2w_solr":{ + "node":"N_2w_solr", + "isLive":true, + "cores":6, + "freedisk":4336.208312988281, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625}, + "N_5_solr":{ + "node":"N_5_solr", + "isLive":true, + "cores":6, + "freedisk":4397.149795532227, + "sysprop.pool":"pool-01", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625}, + "N_do_solr":{ + "node":"N_do_solr", + "isLive":true, + "cores":5, + "freedisk":407.25314712524414, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875}, + "N_3a_solr":{ + "node":"N_3a_solr", + "isLive":true, + "cores":5, + "freedisk":407.706729888916, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875}, + "N_v_solr":{ + "node":"N_v_solr", + "isLive":true, + "cores":5, + "freedisk":412.18456649780273, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875}, + "N_13_solr":{ + "node":"N_13_solr", + "isLive":true, + "cores":5, + "freedisk":718.1634063720703, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875}, + "N_3to_solr":{ + "node":"N_3to_solr", + "isLive":true, + "cores":5, + "freedisk":794.5433731079102, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875}, + "N_16_solr":{ + "node":"N_16_solr", + "isLive":true, + "cores":5, + "freedisk":795.7872657775879, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875}, + "N_d4_solr":{ + "node":"N_d4_solr", + "isLive":true, + "cores":5, + "freedisk":797.2159843444824, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875}, + "N_b9_solr":{ + "node":"N_b9_solr", + "isLive":true, + "cores":5, + "freedisk":801.2417984008789, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875}, + "N_74_solr":{ + "node":"N_74_solr", + "isLive":true, + "cores":5, + "freedisk":802.5921897888184, + "sysprop.pool":"pool-02", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875}}, + "replicaInfos":{ + "N_7e_solr":{ + "COLL_22":{"shard1":[{"core_node6":{ + "core":"COLL_22_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_22", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.4348956483E10, + "INDEX.sizeInGB":22.676732840947807}}]}, + "COLL_q":{"shard1":[{"core_node3":{ + "core":"COLL_q_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765}}]}, + "COLL_1b":{"shard1":[{"core_node3":{ + "core":"COLL_1b_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1b", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1t":{"shard1":[{"core_node3":{ + "core":"COLL_1t_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1t", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.5774407615E10, + "INDEX.sizeInGB":79.8836421361193}}]}, + "COLL_x":{"shard1":[{"core_node3":{ + "core":"COLL_x_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_x", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.18270873E8, + "INDEX.sizeInGB":0.296412848867476}}]}, + "COLL_2k":{"shard1":[{"core_node3":{ + "core":"COLL_2k_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_2k", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1r":{"shard1":[{"core_node3":{ + "core":"COLL_1r_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1r", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.12015174E8, + "INDEX.sizeInGB":0.38371903263032436}}]}, + "COLL_8":{"shard1":[{"core_node3":{ + "core":"COLL_8_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_8", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":356048.0, + "INDEX.sizeInGB":3.315955400466919E-4}}]}, + "COLL_5":{"shard1":[{"core_node2":{ + "core":"COLL_5_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_5", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.854396964E9, + "INDEX.sizeInGB":5.452332053333521}}]}, + "COLL_l":{"shard1":[{"core_node3":{ + "core":"COLL_l_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_l", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1x":{"shard1":[{"core_node3":{ + "core":"COLL_1x_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_1x", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4248411.0, + "INDEX.sizeInGB":0.00395664107054472}}]}, + "COLL_4":{"shard1":[{"core_node3":{ + "core":"COLL_4_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_4", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.58881858E8, + "INDEX.sizeInGB":0.2411025185137987}}]}, + "COLL_6":{"shard1":[{"core_node3":{ + "core":"COLL_6_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_6", + "node_name":"N_7e_solr", + "type":"NRT", + "base_url":"http://N_7e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.6446420654E10, + "INDEX.sizeInGB":15.316922826692462}}]}}, + "N_0_solr":{ + "COLL_22":{"shard1":[{"core_node10":{ + "core":"COLL_22_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_22", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.4351639993E10, + "INDEX.sizeInGB":22.679232054390013}}]}, + "COLL_q":{"shard1":[{"core_node10":{ + "core":"COLL_q_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765}}]}, + "COLL_1b":{"shard1":[{"core_node10":{ + "core":"COLL_1b_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_1b", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1t":{"shard1":[{"core_node5":{ + "core":"COLL_1t_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_1t", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.7485800719E10, + "INDEX.sizeInGB":81.47750116791576}}]}, + "COLL_x":{"shard1":[{"core_node10":{ + "core":"COLL_x_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_x", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.0928583E8, + "INDEX.sizeInGB":0.2880448754876852}}]}, + "COLL_2k":{"shard1":[{"core_node10":{ + "core":"COLL_2k_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_2k", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1r":{"shard1":[{"core_node5":{ + "core":"COLL_1r_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_1r", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.25884524E8, + "INDEX.sizeInGB":0.39663587138056755}}]}, + "COLL_8":{"shard1":[{"core_node5":{ + "core":"COLL_8_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_8", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":399225.0, + "INDEX.sizeInGB":3.718072548508644E-4}}]}, + "COLL_l":{"shard1":[{"core_node10":{ + "core":"COLL_l_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_l", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1x":{"shard1":[{"core_node10":{ + "core":"COLL_1x_shard1_replica_n9", + "shard":"shard1", + "collection":"COLL_1x", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4264901.0, + "INDEX.sizeInGB":0.003971998579800129}}]}, + "COLL_4":{"shard1":[{"core_node5":{ + "core":"COLL_4_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_4", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.58797271E8, + "INDEX.sizeInGB":0.24102374073117971}}]}, + "COLL_6":{"shard1":[{"core_node6":{ + "core":"COLL_6_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_6", + "node_name":"N_0_solr", + "type":"NRT", + "base_url":"http://N_0/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4921656871E10, + "INDEX.sizeInGB":41.83655313309282}}]}}, + "N_4_solr":{ + "COLL_22":{"shard1":[{"core_node5":{ + "core":"COLL_22_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_22", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.436290627E10, + "INDEX.sizeInGB":22.689724592491984}}]}, + "COLL_q":{"shard1":[{"core_node6":{ + "core":"COLL_q_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_q", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765}}]}, + "COLL_1b":{"shard1":[{"core_node6":{ + "core":"COLL_1b_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1b", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1t":{"shard1":[{"core_node6":{ + "core":"COLL_1t_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1t", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.5380419785E10, + "INDEX.sizeInGB":79.51671237591654}}]}, + "COLL_x":{"shard1":[{"core_node6":{ + "core":"COLL_x_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_x", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.03301808E8, + "INDEX.sizeInGB":0.28247182071208954}}]}, + "COLL_2k":{"shard1":[{"core_node6":{ + "core":"COLL_2k_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_2k", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1r":{"shard1":[{"core_node6":{ + "core":"COLL_1r_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1r", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.46826689E8, + "INDEX.sizeInGB":0.4161397824063897}}]}, + "COLL_8":{"shard1":[{"core_node6":{ + "core":"COLL_8_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_8", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":356048.0, + "INDEX.sizeInGB":3.315955400466919E-4}}]}, + "COLL_l":{"shard1":[{"core_node6":{ + "core":"COLL_l_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_l", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7}}]}, + "COLL_1x":{"shard1":[{"core_node6":{ + "core":"COLL_1x_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_1x", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4255591.0, + "INDEX.sizeInGB":0.003963327966630459}}]}, + "COLL_4":{"shard1":[{"core_node6":{ + "core":"COLL_4_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_4", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.59832461E8, + "INDEX.sizeInGB":0.2419878365471959}}]}, + "COLL_6":{"shard1":[{"core_node5":{ + "core":"COLL_6_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_6", + "node_name":"N_4_solr", + "type":"NRT", + "base_url":"http://N_4/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.0738852096E10, + "INDEX.sizeInGB":19.314561128616333}}]}}, + "N_g_solr":{"COLL_2":{ + "shard2_1_0":[{"core_node1681":{ + "core":"COLL_2_shard2_1_0_replica_n1680", + "shard":"shard2_1_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3012044407E11, + "INDEX.sizeInGB":121.18410698138177}}], + "shard5_0_1":[{"core_node1771":{ + "core":"COLL_2_shard5_0_1_replica_n1770", + "shard":"shard5_0_1", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31464210597E11, + "INDEX.sizeInGB":122.43558708298951}}], + "shard5_1_0":[{"core_node1783":{ + "core":"COLL_2_shard5_1_0_replica_n1782", + "shard":"shard5_1_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30012462556E11, + "INDEX.sizeInGB":121.08354135975242}}], + "shard5_1_1":[{"core_node861":{ + "core":"COLL_2_shard5_1_1_replica_n859", + "shard":"shard5_1_1", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29967769078E11, + "INDEX.sizeInGB":121.04191731475294}}], + "shard5_0_0":[{"core_node1769":{ + "core":"COLL_2_shard5_0_0_replica_n1768", + "shard":"shard5_0_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31922267714E11, + "INDEX.sizeInGB":122.8621860165149}}], + "shard9_0_0":[{"core_node1683":{ + "core":"COLL_2_shard9_0_0_replica_n1682", + "shard":"shard9_0_0", + "collection":"COLL_2", + "node_name":"N_g_solr", + "type":"NRT", + "property.preferredleader":"true", + "base_url":"http://N_g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29248772716E11, + "INDEX.sizeInGB":120.37229977175593}}]}}, + "N_17_solr":{"COLL_2":{ + "shard11_1_1":[{"core_node768":{ + "core":"COLL_2_shard11_1_1_replica_n762", + "shard":"shard11_1_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30871431234E11, + "INDEX.sizeInGB":121.88351828046143}}], + "shard14_0_0":[{"core_node1121":{ + "core":"COLL_2_shard14_0_0_replica_n1120", + "shard":"shard14_0_0", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3029908264E11, + "INDEX.sizeInGB":121.3504771143198}}], + "shard18_0_1":[{"core_node877":{ + "core":"COLL_2_shard18_0_1_replica_n2", + "shard":"shard18_0_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28174988934E11, + "INDEX.sizeInGB":119.37226069532335}}], + "shard12_0_1":[{"core_node1699":{ + "core":"COLL_2_shard12_0_1_replica_n1698", + "shard":"shard12_0_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30350286057E11, + "INDEX.sizeInGB":121.39816401246935}}], + "shard12_0_0":[{"core_node1751":{ + "core":"COLL_2_shard12_0_0_replica_n1750", + "shard":"shard12_0_0", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2936875619E11, + "INDEX.sizeInGB":120.48404308967292}}], + "shard14_0_1":[{"core_node1123":{ + "core":"COLL_2_shard14_0_1_replica_n1122", + "shard":"shard14_0_1", + "collection":"COLL_2", + "node_name":"N_17_solr", + "type":"NRT", + "base_url":"http://N_17/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31146492351E11, + "INDEX.sizeInGB":122.13968890812248}}]}}, + "N_303_solr":{"COLL_2":{ + "shard16_0_1":[{"core_node987":{ + "core":"COLL_2_shard16_0_1_replica_n986", + "shard":"shard16_0_1", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30738903625E11, + "INDEX.sizeInGB":121.76009232643992}}], + "shard16_0_0":[{"core_node1785":{ + "core":"COLL_2_shard16_0_0_replica_n1784", + "shard":"shard16_0_0", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26747476604E11, + "INDEX.sizeInGB":118.04278623685241}}], + "shard3_0_0":[{"core_node544":{ + "core":"COLL_2_shard3_0_0_replica_n2", + "shard":"shard3_0_0", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29792212268E11, + "INDEX.sizeInGB":120.87841729447246}}], + "shard9_1_1":[{"core_node1163":{ + "core":"COLL_2_shard9_1_1_replica_n1162", + "shard":"shard9_1_1", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.36568824379E11, + "INDEX.sizeInGB":127.18962913285941}}], + "shard9_1_0":[{"core_node1151":{ + "core":"COLL_2_shard9_1_0_replica_n1150", + "shard":"shard9_1_0", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31117387108E11, + "INDEX.sizeInGB":122.11258253827691}}], + "shard4_0_1":[{"core_node1773":{ + "core":"COLL_2_shard4_0_1_replica_n1772", + "shard":"shard4_0_1", + "collection":"COLL_2", + "node_name":"N_303_solr", + "type":"NRT", + "base_url":"http://N_303/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28126128215E11, + "INDEX.sizeInGB":119.3267556047067}}]}}, + "N_dj_solr":{"COLL_2":{ + "shard1_1_0":[{"core_node471":{ + "core":"COLL_2_shard1_1_0_replica_n1", + "shard":"shard1_1_0", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "base_url":"http://N_dj/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29057719236E11, + "INDEX.sizeInGB":120.19436735287309}}], + "shard7_1_0":[{"core_node928":{ + "core":"COLL_2_shard7_1_0_replica_n926", + "shard":"shard7_1_0", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "base_url":"http://N_dj/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29963886019E11, + "INDEX.sizeInGB":121.03830093424767}}], + "shard7_1_1":[{"core_node941":{ + "core":"COLL_2_shard7_1_1_replica_n927", + "shard":"shard7_1_1", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "base_url":"http://N_dj/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28538540188E11, + "INDEX.sizeInGB":119.71084418520331}}], + "shard18_0_1":[{"core_node773":{ + "core":"COLL_2_shard18_0_1_replica_n771", + "shard":"shard18_0_1", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "base_url":"http://N_dj/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30821199599E11, + "INDEX.sizeInGB":121.83673642482609}}], + "shard13_0_1":[{"core_node1715":{ + "core":"COLL_2_shard13_0_1_replica_n1714", + "shard":"shard13_0_1", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "base_url":"http://N_dj/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30355121703E11, + "INDEX.sizeInGB":121.402667558752}}], + "shard13_0_0":[{"core_node1749":{ + "core":"COLL_2_shard13_0_0_replica_n1748", + "shard":"shard13_0_0", + "collection":"COLL_2", + "node_name":"N_dj_solr", + "type":"NRT", + "base_url":"http://N_dj/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30427736106E11, + "INDEX.sizeInGB":121.47029499150813}}]}}, + "N_1c_solr":{"COLL_2":{ + "shard5_0_1":[{"core_node1703":{ + "core":"COLL_2_shard5_0_1_replica_n1702", + "shard":"shard5_0_1", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31521149156E11, + "INDEX.sizeInGB":122.48861524835229}}], + "shard5_1_0":[{"core_node1135":{ + "core":"COLL_2_shard5_1_0_replica_n1134", + "shard":"shard5_1_0", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30030877168E11, + "INDEX.sizeInGB":121.1006913036108}}], + "shard18_0_0":[{"core_node874":{ + "core":"COLL_2_shard18_0_0_replica_n1", + "shard":"shard18_0_0", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28011422432E11, + "INDEX.sizeInGB":119.21992751955986}}], + "shard5_1_1":[{"core_node1141":{ + "core":"COLL_2_shard5_1_1_replica_n1140", + "shard":"shard5_1_1", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29917464329E11, + "INDEX.sizeInGB":120.99506736639887}}], + "shard5_0_0":[{"core_node999":{ + "core":"COLL_2_shard5_0_0_replica_n998", + "shard":"shard5_0_0", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31937405764E11, + "INDEX.sizeInGB":122.87628442421556}}], + "shard18_0_1":[{"core_node876":{ + "core":"COLL_2_shard18_0_1_replica_n1", + "shard":"shard18_0_1", + "collection":"COLL_2", + "node_name":"N_1c_solr", + "type":"NRT", + "base_url":"http://N_1c/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30729375574E11, + "INDEX.sizeInGB":121.75121863745153}}]}}, + "N_z_solr":{"COLL_2":{ + "shard1_0_0":[{"core_node1717":{ + "core":"COLL_2_shard1_0_0_replica_n1716", + "shard":"shard1_0_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.7185112146E10, + "INDEX.sizeInGB":53.25778587348759}}], + "shard8_1_0":[{"core_node1707":{ + "core":"COLL_2_shard8_1_0_replica_n1706", + "shard":"shard8_1_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.35679630668E11, + "INDEX.sizeInGB":126.361502956599}}], + "shard8_0_0":[{"core_node1731":{ + "core":"COLL_2_shard8_0_0_replica_n1730", + "shard":"shard8_0_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30170301246E11, + "INDEX.sizeInGB":121.23054009489715}}], + "shard8_0_1":[{"core_node1695":{ + "core":"COLL_2_shard8_0_1_replica_n1694", + "shard":"shard8_0_1", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.39918850407E11, + "INDEX.sizeInGB":130.30958399828523}}], + "shard8_1_1":[{"core_node1755":{ + "core":"COLL_2_shard8_1_1_replica_n1754", + "shard":"shard8_1_1", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33314153125E11, + "INDEX.sizeInGB":124.15848032105714}}], + "shard14_1_0":[{"core_node1127":{ + "core":"COLL_2_shard14_1_0_replica_n1126", + "shard":"shard14_1_0", + "collection":"COLL_2", + "node_name":"N_z_solr", + "type":"NRT", + "base_url":"http://N_z/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27443177079E11, + "INDEX.sizeInGB":118.69070779439062}}]}}, + "N_6_solr":{"COLL_2":{ + "shard8_1_0":[{"core_node1811":{ + "core":"COLL_2_shard8_1_0_replica_n1810", + "shard":"shard8_1_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.35679249773E11, + "INDEX.sizeInGB":126.36114822048694}}], + "shard4_0_0":[{"core_node520":{ + "core":"COLL_2_shard4_0_0_replica_n2", + "shard":"shard4_0_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28680029361E11, + "INDEX.sizeInGB":119.84261624608189}}], + "shard4_0_1":[{"core_node1803":{ + "core":"COLL_2_shard4_0_1_replica_n1802", + "shard":"shard4_0_1", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28153346526E11, + "INDEX.sizeInGB":119.35210463218391}}], + "shard9_0_0":[{"core_node1799":{ + "core":"COLL_2_shard9_0_0_replica_n1798", + "shard":"shard9_0_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.35157081196E11, + "INDEX.sizeInGB":125.874840836972}}], + "shard3_1_0":[{"core_node459":{ + "core":"COLL_2_shard3_1_0_replica_n1", + "shard":"shard3_1_0", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32652501535E11, + "INDEX.sizeInGB":123.54226925875992}}], + "shard15_1_1":[{"core_node1709":{ + "core":"COLL_2_shard15_1_1_replica_n1708", + "shard":"shard15_1_1", + "collection":"COLL_2", + "node_name":"N_6_solr", + "type":"NRT", + "base_url":"http://N_6/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30846984322E11, + "INDEX.sizeInGB":121.86075031943619}}]}}, + "N_1m_solr":{"COLL_2":{ + "shard6_1_1":[{"core_node1745":{ + "core":"COLL_2_shard6_1_1_replica_n1744", + "shard":"shard6_1_1", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31273933482E11, + "INDEX.sizeInGB":122.25837771035731}}], + "shard1_1_0":[{"core_node1679":{ + "core":"COLL_2_shard1_1_0_replica_n1678", + "shard":"shard1_1_0", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28970690262E11, + "INDEX.sizeInGB":120.11331530474126}}], + "shard8_0_0":[{"core_node887":{ + "core":"COLL_2_shard8_0_0_replica_n886", + "shard":"shard8_0_0", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30145902623E11, + "INDEX.sizeInGB":121.20781710650772}}], + "shard8_0_1":[{"core_node893":{ + "core":"COLL_2_shard8_0_1_replica_n892", + "shard":"shard8_0_1", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32681734677E11, + "INDEX.sizeInGB":123.56949474383146}}], + "shard8_1_1":[{"core_node1711":{ + "core":"COLL_2_shard8_1_1_replica_n1710", + "shard":"shard8_1_1", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33374089494E11, + "INDEX.sizeInGB":124.21430041454732}}], + "shard6_1_0":[{"core_node1167":{ + "core":"COLL_2_shard6_1_0_replica_n1166", + "shard":"shard6_1_0", + "collection":"COLL_2", + "node_name":"N_1m_solr", + "type":"NRT", + "base_url":"http://N_1m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29376799009E11, + "INDEX.sizeInGB":120.49153354857117}}]}}, + "N_4g_solr":{"COLL_2":{ + "shard8_1_1":[{"core_node1795":{ + "core":"COLL_2_shard8_1_1_replica_n1794", + "shard":"shard8_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33276674177E11, + "INDEX.sizeInGB":124.1235753307119}}], + "shard9_1_1":[{"core_node944":{ + "core":"COLL_2_shard9_1_1_replica_n930", + "shard":"shard9_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33928213329E11, + "INDEX.sizeInGB":124.73036845121533}}], + "shard9_1_0":[{"core_node931":{ + "core":"COLL_2_shard9_1_0_replica_n929", + "shard":"shard9_1_0", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31111103315E11, + "INDEX.sizeInGB":122.1067303000018}}], + "shard18_1_1":[{"core_node626":{ + "core":"COLL_2_shard18_1_1_replica_n624", + "shard":"shard18_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28190099634E11, + "INDEX.sizeInGB":119.38633363135159}}], + "shard18_1_0":[{"core_node625":{ + "core":"COLL_2_shard18_1_0_replica_n623", + "shard":"shard18_1_0", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28955475131E11, + "INDEX.sizeInGB":120.09914510976523}}], + "shard2_1_1":[{"core_node1813":{ + "core":"COLL_2_shard2_1_1_replica_n1812", + "shard":"shard2_1_1", + "collection":"COLL_2", + "node_name":"N_4g_solr", + "type":"NRT", + "base_url":"http://N_4g/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28164947427E11, + "INDEX.sizeInGB":119.36290881317109}}]}}, + "N_65p_solr":{"COLL_2":{ + "shard7_0_0":[{"core_node774":{ + "core":"COLL_2_shard7_0_0_replica_n1", + "shard":"shard7_0_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29027793373E11, + "INDEX.sizeInGB":120.16649672109634}}], + "shard10_1_0":[{"core_node1797":{ + "core":"COLL_2_shard10_1_0_replica_n1796", + "shard":"shard10_1_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27583656591E11, + "INDEX.sizeInGB":118.82153953518718}}], + "shard3_0_0":[{"core_node543":{ + "core":"COLL_2_shard3_0_0_replica_n1", + "shard":"shard3_0_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29871412511E11, + "INDEX.sizeInGB":120.95217826869339}}], + "shard3_0_1":[{"core_node545":{ + "core":"COLL_2_shard3_0_1_replica_n1", + "shard":"shard3_0_1", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31838835644E11, + "INDEX.sizeInGB":122.784483846277}}], + "shard15_1_0":[{"core_node1173":{ + "core":"COLL_2_shard15_1_0_replica_n1172", + "shard":"shard15_1_0", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33316507698E11, + "INDEX.sizeInGB":124.16067318804562}}], + "shard15_1_1":[{"core_node1747":{ + "core":"COLL_2_shard15_1_1_replica_n1746", + "shard":"shard15_1_1", + "collection":"COLL_2", + "node_name":"N_65p_solr", + "type":"NRT", + "base_url":"http://N_65p/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30883359905E11, + "INDEX.sizeInGB":121.89462772104889}}]}}, + "N_u_solr":{"COLL_2":{ + "shard8_1_0":[{"core_node1765":{ + "core":"COLL_2_shard8_1_0_replica_n1764", + "shard":"shard8_1_0", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.35571920799E11, + "INDEX.sizeInGB":126.26119032409042}}], + "shard13_1_1":[{"core_node921":{ + "core":"COLL_2_shard13_1_1_replica_n920", + "shard":"shard13_1_1", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29634542289E11, + "INDEX.sizeInGB":120.73157568369061}}], + "shard15_0_1":[{"core_node734":{ + "core":"COLL_2_shard15_0_1_replica_n2", + "shard":"shard15_0_1", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27250282639E11, + "INDEX.sizeInGB":118.51106084790081}}], + "shard13_0_1":[{"core_node1263":{ + "core":"COLL_2_shard13_0_1_replica_n1262", + "shard":"shard13_0_1", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30321828131E11, + "INDEX.sizeInGB":121.37166050355881}}], + "shard13_1_0":[{"core_node1763":{ + "core":"COLL_2_shard13_1_0_replica_n1762", + "shard":"shard13_1_0", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29567251239E11, + "INDEX.sizeInGB":120.66890600975603}}], + "shard13_0_0":[{"core_node1257":{ + "core":"COLL_2_shard13_0_0_replica_n1256", + "shard":"shard13_0_0", + "collection":"COLL_2", + "node_name":"N_u_solr", + "type":"NRT", + "base_url":"http://N_u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30381429251E11, + "INDEX.sizeInGB":121.42716837208718}}]}}, + "N_1f_solr":{"COLL_2":{ + "shard11_0_1":[{"core_node1223":{ + "core":"COLL_2_shard11_0_1_replica_n1222", + "shard":"shard11_0_1", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27989218509E11, + "INDEX.sizeInGB":119.19924850482494}}], + "shard11_1_0":[{"core_node779":{ + "core":"COLL_2_shard11_1_0_replica_n778", + "shard":"shard11_1_0", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32552454912E11, + "INDEX.sizeInGB":123.44909358024597}}], + "shard11_0_0":[{"core_node1217":{ + "core":"COLL_2_shard11_0_0_replica_n1216", + "shard":"shard11_0_0", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27720861488E11, + "INDEX.sizeInGB":118.94932155311108}}], + "shard11_1_1":[{"core_node783":{ + "core":"COLL_2_shard11_1_1_replica_n782", + "shard":"shard11_1_1", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30995783614E11, + "INDEX.sizeInGB":121.99933045916259}}], + "shard5_0_1":[{"core_node1003":{ + "core":"COLL_2_shard5_0_1_replica_n1002", + "shard":"shard5_0_1", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31534942129E11, + "INDEX.sizeInGB":122.50146095547825}}], + "shard5_0_0":[{"core_node1001":{ + "core":"COLL_2_shard5_0_0_replica_n1000", + "shard":"shard5_0_0", + "collection":"COLL_2", + "node_name":"N_1f_solr", + "type":"NRT", + "base_url":"http://N_1f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31960210955E11, + "INDEX.sizeInGB":122.89752341341227}}]}}, + "N_cs_solr":{"COLL_2":{ + "shard6_1_1":[{"core_node1705":{ + "core":"COLL_2_shard6_1_1_replica_n1704", + "shard":"shard6_1_1", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "base_url":"http://N_cs/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31274462707E11, + "INDEX.sizeInGB":122.25887058954686}}], + "shard10_0_1":[{"core_node828":{ + "core":"COLL_2_shard10_0_1_replica_n826", + "shard":"shard10_0_1", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "base_url":"http://N_cs/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28038688927E11, + "INDEX.sizeInGB":119.245321421884}}], + "shard6_1_0":[{"core_node937":{ + "core":"COLL_2_shard6_1_0_replica_n935", + "shard":"shard6_1_0", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "base_url":"http://N_cs/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29597529819E11, + "INDEX.sizeInGB":120.69710513483733}}], + "shard15_1_0":[{"core_node955":{ + "core":"COLL_2_shard15_1_0_replica_n953", + "shard":"shard15_1_0", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "base_url":"http://N_cs/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33515745782E11, + "INDEX.sizeInGB":124.34622811339796}}], + "shard10_0_0":[{"core_node827":{ + "core":"COLL_2_shard10_0_0_replica_n825", + "shard":"shard10_0_0", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "base_url":"http://N_cs/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29486149433E11, + "INDEX.sizeInGB":120.59337406698614}}], + "shard15_1_1":[{"core_node956":{ + "core":"COLL_2_shard15_1_1_replica_n954", + "shard":"shard15_1_1", + "collection":"COLL_2", + "node_name":"N_cs_solr", + "type":"NRT", + "base_url":"http://N_cs/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30865977458E11, + "INDEX.sizeInGB":121.87843905575573}}]}}, + "N_8_solr":{"COLL_2":{ + "shard16_1_1":[{"core_node853":{ + "core":"COLL_2_shard16_1_1_replica_n851", + "shard":"shard16_1_1", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "base_url":"http://N_8/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33685050832E11, + "INDEX.sizeInGB":124.50390572845936}}], + "shard16_0_1":[{"core_node857":{ + "core":"COLL_2_shard16_0_1_replica_n855", + "shard":"shard16_0_1", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "base_url":"http://N_8/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30788718518E11, + "INDEX.sizeInGB":121.80648606084287}}], + "shard16_1_0":[{"core_node852":{ + "core":"COLL_2_shard16_1_0_replica_n850", + "shard":"shard16_1_0", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "base_url":"http://N_8/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28801317856E11, + "INDEX.sizeInGB":119.95557495951653}}], + "shard16_0_0":[{"core_node856":{ + "core":"COLL_2_shard16_0_0_replica_n854", + "shard":"shard16_0_0", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "base_url":"http://N_8/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2677230126E11, + "INDEX.sizeInGB":118.06590599939227}}], + "shard2_0_0":[{"core_node796":{ + "core":"COLL_2_shard2_0_0_replica_n794", + "shard":"shard2_0_0", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "base_url":"http://N_8/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29517293483E11, + "INDEX.sizeInGB":120.6223792238161}}], + "shard2_0_1":[{"core_node800":{ + "core":"COLL_2_shard2_0_1_replica_n795", + "shard":"shard2_0_1", + "collection":"COLL_2", + "node_name":"N_8_solr", + "type":"NRT", + "base_url":"http://N_8/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31328007233E11, + "INDEX.sizeInGB":122.30873781535774}}]}}, + "N_a_solr":{"COLL_2":{ + "shard3_0_0":[{"core_node1809":{ + "core":"COLL_2_shard3_0_0_replica_n1808", + "shard":"shard3_0_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29798330608E11, + "INDEX.sizeInGB":120.88411544263363}}], + "shard14_0_0":[{"core_node1119":{ + "core":"COLL_2_shard14_0_0_replica_n1118", + "shard":"shard14_0_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30313698451E11, + "INDEX.sizeInGB":121.36408914905041}}], + "shard15_1_0":[{"core_node1175":{ + "core":"COLL_2_shard15_1_0_replica_n1174", + "shard":"shard15_1_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33321224738E11, + "INDEX.sizeInGB":124.16506627388299}}], + "shard14_1_1":[{"core_node836":{ + "core":"COLL_2_shard14_1_1_replica_n834", + "shard":"shard14_1_1", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29318568492E11, + "INDEX.sizeInGB":120.43730215355754}}], + "shard14_0_1":[{"core_node1125":{ + "core":"COLL_2_shard14_0_1_replica_n1124", + "shard":"shard14_0_1", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31102045065E11, + "INDEX.sizeInGB":122.09829414729029}}], + "shard14_1_0":[{"core_node835":{ + "core":"COLL_2_shard14_1_0_replica_n833", + "shard":"shard14_1_0", + "collection":"COLL_2", + "node_name":"N_a_solr", + "type":"NRT", + "base_url":"http://N_a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27418065808E11, + "INDEX.sizeInGB":118.66732110083103}}]}}, + "N_3a7_solr":{"COLL_2":{ + "shard7_0_0":[{"core_node775":{ + "core":"COLL_2_shard7_0_0_replica_n2", + "shard":"shard7_0_0", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29074533898E11, + "INDEX.sizeInGB":120.21002722717822}}], + "shard2_0_0":[{"core_node1823":{ + "core":"COLL_2_shard2_0_0_replica_n1822", + "shard":"shard2_0_0", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29476268104E11, + "INDEX.sizeInGB":120.58417136222124}}], + "shard14_0_0":[{"core_node839":{ + "core":"COLL_2_shard14_0_0_replica_n837", + "shard":"shard14_0_0", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30330451538E11, + "INDEX.sizeInGB":121.37969167716801}}], + "shard3_1_1":[{"core_node462":{ + "core":"COLL_2_shard3_1_1_replica_n2", + "shard":"shard3_1_1", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2992912768E11, + "INDEX.sizeInGB":121.00592970848083}}], + "shard14_1_1":[{"core_node1825":{ + "core":"COLL_2_shard14_1_1_replica_n1824", + "shard":"shard14_1_1", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.300425186E11, + "INDEX.sizeInGB":121.11153323203325}}], + "shard14_0_1":[{"core_node841":{ + "core":"COLL_2_shard14_0_1_replica_n838", + "shard":"shard14_0_1", + "collection":"COLL_2", + "node_name":"N_3a7_solr", + "type":"NRT", + "base_url":"http://N_3a7/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31168916273E11, + "INDEX.sizeInGB":122.1605728128925}}]}}, + "N_11_solr":{"COLL_2":{ + "shard6_0_0":[{"core_node1210":{ + "core":"COLL_2_shard6_0_0_replica_n1209", + "shard":"shard6_0_0", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28939953876E11, + "INDEX.sizeInGB":120.08468981459737}}], + "shard6_0_1":[{"core_node1212":{ + "core":"COLL_2_shard6_0_1_replica_n1211", + "shard":"shard6_0_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28744354495E11, + "INDEX.sizeInGB":119.90252369549125}}], + "shard9_1_1":[{"core_node1155":{ + "core":"COLL_2_shard9_1_1_replica_n1154", + "shard":"shard9_1_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.33894519282E11, + "INDEX.sizeInGB":124.69898842461407}}], + "shard9_1_0":[{"core_node1153":{ + "core":"COLL_2_shard9_1_0_replica_n1152", + "shard":"shard9_1_0", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31406038908E11, + "INDEX.sizeInGB":122.3814104758203}}], + "shard9_0_1":[{"core_node438":{ + "core":"COLL_2_shard9_0_1_replica_n436", + "shard":"shard9_0_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29282915395E11, + "INDEX.sizeInGB":120.40409761946648}}], + "shard12_1_1":[{"core_node662":{ + "core":"COLL_2_shard12_1_1_replica_n2", + "shard":"shard12_1_1", + "collection":"COLL_2", + "node_name":"N_11_solr", + "type":"NRT", + "base_url":"http://N_11/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26693447901E11, + "INDEX.sizeInGB":117.99246808607131}}]}}, + "N_4f_solr":{"COLL_2":{ + "shard2_0_1":[{"core_node915":{ + "core":"COLL_2_shard2_0_1_replica_n914", + "shard":"shard2_0_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31386626219E11, + "INDEX.sizeInGB":122.36333100032061}}], + "shard2_1_0":[{"core_node975":{ + "core":"COLL_2_shard2_1_0_replica_n974", + "shard":"shard2_1_0", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3001251468E11, + "INDEX.sizeInGB":121.0835899040103}}], + "shard6_0_0":[{"core_node1182":{ + "core":"COLL_2_shard6_0_0_replica_n1180", + "shard":"shard6_0_0", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28922958966E11, + "INDEX.sizeInGB":120.06886207126081}}], + "shard6_0_1":[{"core_node1189":{ + "core":"COLL_2_shard6_0_1_replica_n1181", + "shard":"shard6_0_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28773562289E11, + "INDEX.sizeInGB":119.92972557339817}}], + "shard3_0_1":[{"core_node546":{ + "core":"COLL_2_shard3_0_1_replica_n2", + "shard":"shard3_0_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31838927317E11, + "INDEX.sizeInGB":122.78456922341138}}], + "shard2_1_1":[{"core_node1685":{ + "core":"COLL_2_shard2_1_1_replica_n1684", + "shard":"shard2_1_1", + "collection":"COLL_2", + "node_name":"N_4f_solr", + "type":"NRT", + "base_url":"http://N_4f/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2812596905E11, + "INDEX.sizeInGB":119.32660737074912}}]}}, + "N_1i_solr":{"COLL_2":{ + "shard17_1_0":[{"core_node1200":{ + "core":"COLL_2_shard17_1_0_replica_n1198", + "shard":"shard17_1_0", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29069936299E11, + "INDEX.sizeInGB":120.20574537944049}}], + "shard17_0_1":[{"core_node1117":{ + "core":"COLL_2_shard17_0_1_replica_n1116", + "shard":"shard17_0_1", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30694171889E11, + "INDEX.sizeInGB":121.71843265090138}}], + "shard10_1_1":[{"core_node1779":{ + "core":"COLL_2_shard10_1_1_replica_n1778", + "shard":"shard10_1_1", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30255789623E11, + "INDEX.sizeInGB":121.31015735026449}}], + "shard17_0_0":[{"core_node1781":{ + "core":"COLL_2_shard17_0_0_replica_n1780", + "shard":"shard17_0_0", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30702509646E11, + "INDEX.sizeInGB":121.72619779221714}}], + "shard10_1_0":[{"core_node1693":{ + "core":"COLL_2_shard10_1_0_replica_n1692", + "shard":"shard10_1_0", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27561685082E11, + "INDEX.sizeInGB":118.80107697285712}}], + "shard17_1_1":[{"core_node1203":{ + "core":"COLL_2_shard17_1_1_replica_n1199", + "shard":"shard17_1_1", + "collection":"COLL_2", + "node_name":"N_1i_solr", + "type":"NRT", + "base_url":"http://N_1i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28764084367E11, + "INDEX.sizeInGB":119.92089857067913}}]}}, + "N_9o_solr":{"COLL_2":{ + "shard11_0_1":[{"core_node1221":{ + "core":"COLL_2_shard11_0_1_replica_n1220", + "shard":"shard11_0_1", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28020049235E11, + "INDEX.sizeInGB":119.22796185594052}}], + "shard11_1_0":[{"core_node781":{ + "core":"COLL_2_shard11_1_0_replica_n780", + "shard":"shard11_1_0", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32420261013E11, + "INDEX.sizeInGB":123.32597841788083}}], + "shard11_0_0":[{"core_node1219":{ + "core":"COLL_2_shard11_0_0_replica_n1218", + "shard":"shard11_0_0", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28002391411E11, + "INDEX.sizeInGB":119.21151672583073}}], + "shard7_0_0":[{"core_node766":{ + "core":"COLL_2_shard7_0_0_replica_n764", + "shard":"shard7_0_0", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28994593549E11, + "INDEX.sizeInGB":120.13557697553188}}], + "shard11_1_1":[{"core_node785":{ + "core":"COLL_2_shard11_1_1_replica_n784", + "shard":"shard11_1_1", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30909357727E11, + "INDEX.sizeInGB":121.91884007956833}}], + "shard7_0_1":[{"core_node769":{ + "core":"COLL_2_shard7_0_1_replica_n765", + "shard":"shard7_0_1", + "collection":"COLL_2", + "node_name":"N_9o_solr", + "type":"NRT", + "base_url":"http://N_9o/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28908501869E11, + "INDEX.sizeInGB":120.0553978504613}}]}}, + "N_2_solr":{"COLL_2":{ + "shard5_1_0":[{"core_node1137":{ + "core":"COLL_2_shard5_1_0_replica_n1136", + "shard":"shard5_1_0", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":7.6877250282E10, + "INDEX.sizeInGB":71.59751866199076}}], + "shard5_1_1":[{"core_node1139":{ + "core":"COLL_2_shard5_1_1_replica_n1138", + "shard":"shard5_1_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29952609098E11, + "INDEX.sizeInGB":121.02779848314822}}], + "shard7_0_1":[{"core_node776":{ + "core":"COLL_2_shard7_0_1_replica_n1", + "shard":"shard7_0_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2890128588E11, + "INDEX.sizeInGB":120.04867743700743}}], + "shard9_0_1":[{"core_node478":{ + "core":"COLL_2_shard9_0_1_replica_n2", + "shard":"shard9_0_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29212951693E11, + "INDEX.sizeInGB":120.33893884439021}}], + "shard12_0_1":[{"core_node1255":{ + "core":"COLL_2_shard12_0_1_replica_n1254", + "shard":"shard12_0_1", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30384315739E11, + "INDEX.sizeInGB":121.42985662352294}}], + "shard12_0_0":[{"core_node1249":{ + "core":"COLL_2_shard12_0_0_replica_n1248", + "shard":"shard12_0_0", + "collection":"COLL_2", + "node_name":"N_2_solr", + "type":"NRT", + "base_url":"http://N_2/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29421522442E11, + "INDEX.sizeInGB":120.53318549133837}}]}}, + "N_t_solr":{"COLL_2":{ + "shard11_0_1":[{"core_node1195":{ + "core":"COLL_2_shard11_0_1_replica_n1184", + "shard":"shard11_0_1", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27980394382E11, + "INDEX.sizeInGB":119.19103039614856}}], + "shard11_1_0":[{"core_node1791":{ + "core":"COLL_2_shard11_1_0_replica_n1790", + "shard":"shard11_1_0", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32416023485E11, + "INDEX.sizeInGB":123.32203191239387}}], + "shard11_0_0":[{"core_node1185":{ + "core":"COLL_2_shard11_0_0_replica_n1183", + "shard":"shard11_0_0", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2777477116E11, + "INDEX.sizeInGB":118.99952884763479}}], + "shard10_1_1":[{"core_node1743":{ + "core":"COLL_2_shard10_1_1_replica_n1742", + "shard":"shard10_1_1", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30757016285E11, + "INDEX.sizeInGB":121.77696105558425}}], + "shard10_0_1":[{"core_node905":{ + "core":"COLL_2_shard10_0_1_replica_n904", + "shard":"shard10_0_1", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28142990156E11, + "INDEX.sizeInGB":119.34245951101184}}], + "shard10_0_0":[{"core_node1733":{ + "core":"COLL_2_shard10_0_0_replica_n1732", + "shard":"shard10_0_0", + "collection":"COLL_2", + "node_name":"N_t_solr", + "type":"NRT", + "base_url":"http://N_t/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2914349283E11, + "INDEX.sizeInGB":120.27425023727119}}]}}, + "N_2u_solr":{"COLL_2":{ + "shard17_1_0":[{"core_node1225":{ + "core":"COLL_2_shard17_1_0_replica_n1224", + "shard":"shard17_1_0", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29066474889E11, + "INDEX.sizeInGB":120.20252169016749}}], + "shard17_0_1":[{"core_node1115":{ + "core":"COLL_2_shard17_0_1_replica_n1114", + "shard":"shard17_0_1", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30049647193E11, + "INDEX.sizeInGB":121.1181722516194}}], + "shard17_0_0":[{"core_node1735":{ + "core":"COLL_2_shard17_0_0_replica_n1734", + "shard":"shard17_0_0", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31102615765E11, + "INDEX.sizeInGB":122.09882565308362}}], + "shard3_1_1":[{"core_node461":{ + "core":"COLL_2_shard3_1_1_replica_n1", + "shard":"shard3_1_1", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29953637358E11, + "INDEX.sizeInGB":121.02875612489879}}], + "shard17_1_1":[{"core_node1231":{ + "core":"COLL_2_shard17_1_1_replica_n1230", + "shard":"shard17_1_1", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.287734207E11, + "INDEX.sizeInGB":119.92959370836616}}], + "shard12_1_0":[{"core_node660":{ + "core":"COLL_2_shard12_1_0_replica_n2", + "shard":"shard12_1_0", + "collection":"COLL_2", + "node_name":"N_2u_solr", + "type":"NRT", + "base_url":"http://N_2u/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27387972534E11, + "INDEX.sizeInGB":118.63929455541074}}]}}, + "N_m_solr":{"COLL_2":{ + "shard6_1_1":[{"core_node1171":{ + "core":"COLL_2_shard6_1_1_replica_n1170", + "shard":"shard6_1_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31256081422E11, + "INDEX.sizeInGB":122.24175168387592}}], + "shard17_1_0":[{"core_node1227":{ + "core":"COLL_2_shard17_1_0_replica_n1226", + "shard":"shard17_1_0", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29049722959E11, + "INDEX.sizeInGB":120.18692023959011}}], + "shard6_0_0":[{"core_node1208":{ + "core":"COLL_2_shard6_0_0_replica_n1207", + "shard":"shard6_0_0", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28936808614E11, + "INDEX.sizeInGB":120.08176056109369}}], + "shard6_0_1":[{"core_node1214":{ + "core":"COLL_2_shard6_0_1_replica_n1213", + "shard":"shard6_0_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28745543493E11, + "INDEX.sizeInGB":119.90363103616983}}], + "shard9_0_1":[{"core_node477":{ + "core":"COLL_2_shard9_0_1_replica_n1", + "shard":"shard9_0_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29063920601E11, + "INDEX.sizeInGB":120.20014282409102}}], + "shard17_1_1":[{"core_node1229":{ + "core":"COLL_2_shard17_1_1_replica_n1228", + "shard":"shard17_1_1", + "collection":"COLL_2", + "node_name":"N_m_solr", + "type":"NRT", + "base_url":"http://N_m/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28816978409E11, + "INDEX.sizeInGB":119.97015998605639}}]}}, + "N_7_solr":{"COLL_2":{ + "shard13_1_1":[{"core_node808":{ + "core":"COLL_2_shard13_1_1_replica_n806", + "shard":"shard13_1_1", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2961448776E11, + "INDEX.sizeInGB":120.71289844810963}}], + "shard15_0_1":[{"core_node610":{ + "core":"COLL_2_shard15_0_1_replica_n608", + "shard":"shard15_0_1", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2722802278E11, + "INDEX.sizeInGB":118.49032973870635}}], + "shard15_0_0":[{"core_node609":{ + "core":"COLL_2_shard15_0_0_replica_n607", + "shard":"shard15_0_0", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27258670055E11, + "INDEX.sizeInGB":118.5188722377643}}], + "shard13_0_1":[{"core_node1767":{ + "core":"COLL_2_shard13_0_1_replica_n1766", + "shard":"shard13_0_1", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30339106107E11, + "INDEX.sizeInGB":121.38775187265128}}], + "shard13_1_0":[{"core_node1689":{ + "core":"COLL_2_shard13_1_0_replica_n1688", + "shard":"shard13_1_0", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29592823396E11, + "INDEX.sizeInGB":120.69272193685174}}], + "shard13_0_0":[{"core_node1713":{ + "core":"COLL_2_shard13_0_0_replica_n1712", + "shard":"shard13_0_0", + "collection":"COLL_2", + "node_name":"N_7_solr", + "type":"NRT", + "base_url":"http://N_7/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30437704659E11, + "INDEX.sizeInGB":121.47957892995328}}]}}, + "N_6c_solr":{"COLL_2":{ + "shard17_0_1":[{"core_node848":{ + "core":"COLL_2_shard17_0_1_replica_n843", + "shard":"shard17_0_1", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "base_url":"http://N_6c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30730929322E11, + "INDEX.sizeInGB":121.7526656780392}}], + "shard17_0_0":[{"core_node844":{ + "core":"COLL_2_shard17_0_0_replica_n842", + "shard":"shard17_0_0", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "base_url":"http://N_6c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30743109221E11, + "INDEX.sizeInGB":121.76400909293443}}], + "shard4_0_0":[{"core_node445":{ + "core":"COLL_2_shard4_0_0_replica_n443", + "shard":"shard4_0_0", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "base_url":"http://N_6c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28741762257E11, + "INDEX.sizeInGB":119.90010948572308}}], + "shard4_1_0":[{"core_node457":{ + "core":"COLL_2_shard4_1_0_replica_n455", + "shard":"shard4_1_0", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "base_url":"http://N_6c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27664473589E11, + "INDEX.sizeInGB":118.89680622983724}}], + "shard4_0_1":[{"core_node446":{ + "core":"COLL_2_shard4_0_1_replica_n444", + "shard":"shard4_0_1", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "base_url":"http://N_6c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28032413116E11, + "INDEX.sizeInGB":119.23947661742568}}], + "shard4_1_1":[{"core_node458":{ + "core":"COLL_2_shard4_1_1_replica_n456", + "shard":"shard4_1_1", + "collection":"COLL_2", + "node_name":"N_6c_solr", + "type":"NRT", + "base_url":"http://N_6c/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27865802727E11, + "INDEX.sizeInGB":119.08430860098451}}]}}, + "N_6i_solr":{"COLL_2":{ + "shard10_1_1":[{"core_node840":{ + "core":"COLL_2_shard10_1_1_replica_n830", + "shard":"shard10_1_1", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30273229534E11, + "INDEX.sizeInGB":121.32639953307807}}], + "shard10_1_0":[{"core_node831":{ + "core":"COLL_2_shard10_1_0_replica_n829", + "shard":"shard10_1_0", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27564995026E11, + "INDEX.sizeInGB":118.80415959842503}}], + "shard10_0_1":[{"core_node1739":{ + "core":"COLL_2_shard10_0_1_replica_n1738", + "shard":"shard10_0_1", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28024871739E11, + "INDEX.sizeInGB":119.2324531627819}}], + "shard2_1_0":[{"core_node1727":{ + "core":"COLL_2_shard2_1_0_replica_n1726", + "shard":"shard2_1_0", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30025926492E11, + "INDEX.sizeInGB":121.0960806272924}}], + "shard10_0_0":[{"core_node897":{ + "core":"COLL_2_shard10_0_0_replica_n896", + "shard":"shard10_0_0", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29103730913E11, + "INDEX.sizeInGB":120.2372190663591}}], + "shard2_1_1":[{"core_node979":{ + "core":"COLL_2_shard2_1_1_replica_n978", + "shard":"shard2_1_1", + "collection":"COLL_2", + "node_name":"N_6i_solr", + "type":"NRT", + "base_url":"http://N_6i/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2815510735E11, + "INDEX.sizeInGB":119.35374452732503}}]}}, + "N_3_solr":{"COLL_2":{ + "shard16_1_1":[{"core_node997":{ + "core":"COLL_2_shard16_1_1_replica_n996", + "shard":"shard16_1_1", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26611980672E11, + "INDEX.sizeInGB":117.91659581661224}}], + "shard16_1_0":[{"core_node991":{ + "core":"COLL_2_shard16_1_0_replica_n990", + "shard":"shard16_1_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28724323652E11, + "INDEX.sizeInGB":119.88386851921678}}], + "shard1_1_1":[{"core_node474":{ + "core":"COLL_2_shard1_1_1_replica_n2", + "shard":"shard1_1_1", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29556889925E11, + "INDEX.sizeInGB":120.65925628412515}}], + "shard4_0_0":[{"core_node1737":{ + "core":"COLL_2_shard4_0_0_replica_n1736", + "shard":"shard4_0_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28645187639E11, + "INDEX.sizeInGB":119.81016736384481}}], + "shard4_1_0":[{"core_node523":{ + "core":"COLL_2_shard4_1_0_replica_n1", + "shard":"shard4_1_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27649471364E11, + "INDEX.sizeInGB":118.88283431902528}}], + "shard9_0_0":[{"core_node1815":{ + "core":"COLL_2_shard9_0_0_replica_n1814", + "shard":"shard9_0_0", + "collection":"COLL_2", + "node_name":"N_3_solr", + "type":"NRT", + "base_url":"http://N_3/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29037175651E11, + "INDEX.sizeInGB":120.17523464839906}}]}}, + "N_1d_solr":{"COLL_2":{ + "shard3_1_0":[{"core_node425":{ + "core":"COLL_2_shard3_1_0_replica_n423", + "shard":"shard3_1_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2828759808E11, + "INDEX.sizeInGB":119.47713613510132}}], + "shard3_1_1":[{"core_node426":{ + "core":"COLL_2_shard3_1_1_replica_n424", + "shard":"shard3_1_1", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29948029547E11, + "INDEX.sizeInGB":121.02353344392031}}], + "shard15_0_0":[{"core_node732":{ + "core":"COLL_2_shard15_0_0_replica_n2", + "shard":"shard15_0_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27262832088E11, + "INDEX.sizeInGB":118.5227484330535}}], + "shard12_1_0":[{"core_node1789":{ + "core":"COLL_2_shard12_1_0_replica_n1788", + "shard":"shard12_1_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27487519935E11, + "INDEX.sizeInGB":118.73200529720634}}], + "shard14_1_1":[{"core_node1741":{ + "core":"COLL_2_shard14_1_1_replica_n1740", + "shard":"shard14_1_1", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29231781669E11, + "INDEX.sizeInGB":120.35647562611848}}], + "shard14_1_0":[{"core_node1129":{ + "core":"COLL_2_shard14_1_0_replica_n1128", + "shard":"shard14_1_0", + "collection":"COLL_2", + "node_name":"N_1d_solr", + "type":"NRT", + "base_url":"http://N_1d/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27407685053E11, + "INDEX.sizeInGB":118.65765326935798}}]}}, + "N_1_solr":{"COLL_2":{ + "shard16_1_1":[{"core_node995":{ + "core":"COLL_2_shard16_1_1_replica_n994", + "shard":"shard16_1_1", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26672765511E11, + "INDEX.sizeInGB":117.97320610936731}}], + "shard16_0_1":[{"core_node989":{ + "core":"COLL_2_shard16_0_1_replica_n988", + "shard":"shard16_0_1", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.3069803609E11, + "INDEX.sizeInGB":121.72203146852553}}], + "shard16_1_0":[{"core_node993":{ + "core":"COLL_2_shard16_1_0_replica_n992", + "shard":"shard16_1_0", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28812502313E11, + "INDEX.sizeInGB":119.96599129680544}}], + "shard16_0_0":[{"core_node983":{ + "core":"COLL_2_shard16_0_0_replica_n982", + "shard":"shard16_0_0", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26766519189E11, + "INDEX.sizeInGB":118.06052102614194}}], + "shard18_0_0":[{"core_node875":{ + "core":"COLL_2_shard18_0_0_replica_n2", + "shard":"shard18_0_0", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28033512867E11, + "INDEX.sizeInGB":119.24050084035844}}], + "shard12_1_1":[{"core_node586":{ + "core":"COLL_2_shard12_1_1_replica_n584", + "shard":"shard12_1_1", + "collection":"COLL_2", + "node_name":"N_1_solr", + "type":"NRT", + "base_url":"http://N_1/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2671712403E11, + "INDEX.sizeInGB":118.01451819948852}}]}}, + "N_aw_solr":{"COLL_2":{ + "shard18_1_1":[{"core_node1821":{ + "core":"COLL_2_shard18_1_1_replica_n1820", + "shard":"shard18_1_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28188518759E11, + "INDEX.sizeInGB":119.38486132677644}}], + "shard4_1_1":[{"core_node525":{ + "core":"COLL_2_shard4_1_1_replica_n1", + "shard":"shard4_1_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27899653279E11, + "INDEX.sizeInGB":119.11583438422531}}], + "shard3_1_0":[{"core_node460":{ + "core":"COLL_2_shard3_1_0_replica_n2", + "shard":"shard3_1_0", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28273400877E11, + "INDEX.sizeInGB":119.46391395945102}}], + "shard15_0_1":[{"core_node1817":{ + "core":"COLL_2_shard15_0_1_replica_n1816", + "shard":"shard15_0_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27129784031E11, + "INDEX.sizeInGB":118.39883777406067}}], + "shard12_1_1":[{"core_node661":{ + "core":"COLL_2_shard12_1_1_replica_n1", + "shard":"shard12_1_1", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.26701654869E11, + "INDEX.sizeInGB":118.00011142063886}}], + "shard12_1_0":[{"core_node659":{ + "core":"COLL_2_shard12_1_0_replica_n1", + "shard":"shard12_1_0", + "collection":"COLL_2", + "node_name":"N_aw_solr", + "type":"NRT", + "base_url":"http://N_aw/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27434400341E11, + "INDEX.sizeInGB":118.68253382015973}}]}}, + "N_1h_solr":{"COLL_2":{ + "shard1_0_0":[{"core_node1729":{ + "core":"COLL_2_shard1_0_0_replica_n1728", + "shard":"shard1_0_0", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.7176945428E10, + "INDEX.sizeInGB":53.25018002465367}}], + "shard7_1_0":[{"core_node1145":{ + "core":"COLL_2_shard7_1_0_replica_n1144", + "shard":"shard7_1_0", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2949609012E11, + "INDEX.sizeInGB":120.60263205319643}}], + "shard7_1_1":[{"core_node1701":{ + "core":"COLL_2_shard7_1_1_replica_n1700", + "shard":"shard7_1_1", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28489170345E11, + "INDEX.sizeInGB":119.66486493591219}}], + "shard3_0_1":[{"core_node510":{ + "core":"COLL_2_shard3_0_1_replica_n508", + "shard":"shard3_0_1", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31866901019E11, + "INDEX.sizeInGB":122.81062176357955}}], + "shard12_0_1":[{"core_node1761":{ + "core":"COLL_2_shard12_0_1_replica_n1760", + "shard":"shard12_0_1", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30342308934E11, + "INDEX.sizeInGB":121.39073473773897}}], + "shard12_0_0":[{"core_node1697":{ + "core":"COLL_2_shard12_0_0_replica_n1696", + "shard":"shard12_0_0", + "collection":"COLL_2", + "node_name":"N_1h_solr", + "type":"NRT", + "base_url":"http://N_1h/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29369271388E11, + "INDEX.sizeInGB":120.48452290520072}}]}}, + "N_29_solr":{"COLL_2":{ + "shard8_0_0":[{"core_node1691":{ + "core":"COLL_2_shard8_0_0_replica_n1690", + "shard":"shard8_0_0", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.30176337999E11, + "INDEX.sizeInGB":121.23616225924343}}], + "shard8_0_1":[{"core_node1787":{ + "core":"COLL_2_shard8_0_1_replica_n1786", + "shard":"shard8_0_1", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.32692723859E11, + "INDEX.sizeInGB":123.57972921710461}}], + "shard7_1_0":[{"core_node1143":{ + "core":"COLL_2_shard7_1_0_replica_n1142", + "shard":"shard7_1_0", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2946739865E11, + "INDEX.sizeInGB":120.57591103948653}}], + "shard7_0_1":[{"core_node777":{ + "core":"COLL_2_shard7_0_1_replica_n2", + "shard":"shard7_0_1", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":8.6794048237E10, + "INDEX.sizeInGB":80.83325646538287}}], + "shard7_1_1":[{"core_node1759":{ + "core":"COLL_2_shard7_1_1_replica_n1758", + "shard":"shard7_1_1", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28546712309E11, + "INDEX.sizeInGB":119.7184550659731}}], + "shard6_1_0":[{"core_node1793":{ + "core":"COLL_2_shard6_1_0_replica_n1792", + "shard":"shard6_1_0", + "collection":"COLL_2", + "node_name":"N_29_solr", + "type":"NRT", + "base_url":"http://N_29/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29365181039E11, + "INDEX.sizeInGB":120.48071347083896}}]}}, + "N_e_solr":{"COLL_2":{ + "shard1_0_1":[{"core_node1719":{ + "core":"COLL_2_shard1_0_1_replica_n1718", + "shard":"shard1_0_1", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.9506746089E10, + "INDEX.sizeInGB":55.41997597459704}}], + "shard18_0_0":[{"core_node1819":{ + "core":"COLL_2_shard18_0_0_replica_n1818", + "shard":"shard18_0_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28218931509E11, + "INDEX.sizeInGB":119.41318540740758}}], + "shard13_1_1":[{"core_node925":{ + "core":"COLL_2_shard13_1_1_replica_n924", + "shard":"shard13_1_1", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29598508564E11, + "INDEX.sizeInGB":120.69801666215062}}], + "shard18_1_0":[{"core_node672":{ + "core":"COLL_2_shard18_1_0_replica_n2", + "shard":"shard18_1_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29108586002E11, + "INDEX.sizeInGB":120.24174072034657}}], + "shard15_0_0":[{"core_node731":{ + "core":"COLL_2_shard15_0_0_replica_n1", + "shard":"shard15_0_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27235871561E11, + "INDEX.sizeInGB":118.49763948563486}}], + "shard13_1_0":[{"core_node923":{ + "core":"COLL_2_shard13_1_0_replica_n922", + "shard":"shard13_1_0", + "collection":"COLL_2", + "node_name":"N_e_solr", + "type":"NRT", + "base_url":"http://N_e/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29514183189E11, + "INDEX.sizeInGB":120.6194825368002}}]}}, + "N_2w_solr":{"COLL_2":{ + "shard1_0_1":[{"core_node1677":{ + "core":"COLL_2_shard1_0_1_replica_n1676", + "shard":"shard1_0_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.9557275352E10, + "INDEX.sizeInGB":55.46703501790762}}], + "shard1_1_1":[{"core_node1807":{ + "core":"COLL_2_shard1_1_1_replica_n1806", + "shard":"shard1_1_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.2954748046E11, + "INDEX.sizeInGB":120.6504930369556}}], + "shard4_1_0":[{"core_node1775":{ + "core":"COLL_2_shard4_1_0_replica_n1774", + "shard":"shard4_1_0", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27659935903E11, + "INDEX.sizeInGB":118.89258018042892}}], + "shard18_1_1":[{"core_node673":{ + "core":"COLL_2_shard18_1_1_replica_n1", + "shard":"shard18_1_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28226679933E11, + "INDEX.sizeInGB":119.42040168959647}}], + "shard4_1_1":[{"core_node1805":{ + "core":"COLL_2_shard4_1_1_replica_n1804", + "shard":"shard4_1_1", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.27878088796E11, + "INDEX.sizeInGB":119.0957508943975}}], + "shard18_1_0":[{"core_node671":{ + "core":"COLL_2_shard18_1_0_replica_n1", + "shard":"shard18_1_0", + "collection":"COLL_2", + "node_name":"N_2w_solr", + "type":"NRT", + "base_url":"http://N_2w/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.28884297502E11, + "INDEX.sizeInGB":120.03285577706993}}]}}, + "N_5_solr":{"COLL_2":{ + "shard1_1_0":[{"core_node1721":{ + "core":"COLL_2_shard1_1_0_replica_n1720", + "shard":"shard1_1_0", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29009851855E11, + "INDEX.sizeInGB":120.14978738036007}}], + "shard1_0_1":[{"core_node1669":{ + "core":"COLL_2_shard1_0_1_replica_n1668", + "shard":"shard1_0_1", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.9574276743E10, + "INDEX.sizeInGB":55.482868797145784}}], + "shard1_1_1":[{"core_node418":{ + "core":"COLL_2_shard1_1_1_replica_n416", + "shard":"shard1_1_1", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29698716918E11, + "INDEX.sizeInGB":120.79134296439588}}], + "shard2_0_0":[{"core_node911":{ + "core":"COLL_2_shard2_0_0_replica_n910", + "shard":"shard2_0_0", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.29504451209E11, + "INDEX.sizeInGB":120.6104189241305}}], + "shard2_0_1":[{"core_node917":{ + "core":"COLL_2_shard2_0_1_replica_n916", + "shard":"shard2_0_1", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":1.31334463143E11, + "INDEX.sizeInGB":122.31475035008043}}], + "shard1_0_0":[{"core_node1725":{ + "core":"COLL_2_shard1_0_0_replica_n1724", + "shard":"shard1_0_0", + "collection":"COLL_2", + "node_name":"N_5_solr", + "type":"NRT", + "base_url":"http://N_5/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.7183711221E10, + "INDEX.sizeInGB":53.25648116040975}}]}}, + "N_do_solr":{ + "COLL_1":{ + "shard3_0_0":[{"core_node112":{ + "core":"COLL_1_shard3_0_0_replica_n111", + "shard":"shard3_0_0", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "base_url":"http://N_do/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4957115524E10, + "INDEX.sizeInGB":41.86957657709718}}], + "shard3_1_0":[{"core_node116":{ + "core":"COLL_1_shard3_1_0_replica_n115", + "shard":"shard3_1_0", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "base_url":"http://N_do/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3732753925E10, + "INDEX.sizeInGB":40.72930098045617}}], + "shard3_0_1":[{"core_node114":{ + "core":"COLL_1_shard3_0_1_replica_n113", + "shard":"shard3_0_1", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "base_url":"http://N_do/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.577095697E10, + "INDEX.sizeInGB":42.62752548791468}}], + "shard3_1_1":[{"core_node118":{ + "core":"COLL_1_shard3_1_1_replica_n117", + "shard":"shard3_1_1", + "collection":"COLL_1", + "node_name":"N_do_solr", + "type":"NRT", + "base_url":"http://N_do/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.8532509927E10, + "INDEX.sizeInGB":45.19942209776491}}]}, + "COLL_0":{"shard3":[{"core_node15":{ + "core":"COLL_0_shard3_replica_n12", + "shard":"shard3", + "collection":"COLL_0", + "node_name":"N_do_solr", + "type":"NRT", + "base_url":"http://N_do/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.1297025422E10, + "INDEX.sizeInGB":29.147626293823123}}]}}, + "N_3a_solr":{ + "COLL_1":{ + "shard3_0_0":[{"core_node73":{ + "core":"COLL_1_shard3_0_0_replica_n71", + "shard":"shard3_0_0", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5160600486E10, + "INDEX.sizeInGB":42.05908671580255}}], + "shard3_1_0":[{"core_node77":{ + "core":"COLL_1_shard3_1_0_replica_n75", + "shard":"shard3_1_0", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5090380622E10, + "INDEX.sizeInGB":41.99368937127292}}], + "shard3_0_1":[{"core_node74":{ + "core":"COLL_1_shard3_0_1_replica_n72", + "shard":"shard3_0_1", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5879426317E10, + "INDEX.sizeInGB":42.72854543942958}}], + "shard3_1_1":[{"core_node78":{ + "core":"COLL_1_shard3_1_1_replica_n76", + "shard":"shard3_1_1", + "collection":"COLL_1", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.6849085882E10, + "INDEX.sizeInGB":43.631611282005906}}]}, + "COLL_0":{"shard3":[{"core_node17":{ + "core":"COLL_0_shard3_replica_n14", + "shard":"shard3", + "collection":"COLL_0", + "node_name":"N_3a_solr", + "type":"NRT", + "base_url":"http://N_3a/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.0819950704E10, + "INDEX.sizeInGB":28.70331583917141}}]}}, + "N_v_solr":{ + "COLL_1":{ + "shard3_0_0":[{"core_node120":{ + "core":"COLL_1_shard3_0_0_replica_n119", + "shard":"shard3_0_0", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3809517838E10, + "INDEX.sizeInGB":40.80079294554889}}], + "shard3_1_0":[{"core_node124":{ + "core":"COLL_1_shard3_1_0_replica_n123", + "shard":"shard3_1_0", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5638162031E10, + "INDEX.sizeInGB":42.503850563429296}}], + "shard3_0_1":[{"core_node122":{ + "core":"COLL_1_shard3_0_1_replica_n121", + "shard":"shard3_0_1", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.6310602091E10, + "INDEX.sizeInGB":43.13010917138308}}], + "shard3_1_1":[{"core_node126":{ + "core":"COLL_1_shard3_1_1_replica_n125", + "shard":"shard3_1_1", + "collection":"COLL_1", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4257494507E10, + "INDEX.sizeInGB":41.21800373028964}}]}, + "COLL_0":{"shard3":[{"core_node18":{ + "core":"COLL_0_shard3_replica_n16", + "shard":"shard3", + "collection":"COLL_0", + "node_name":"N_v_solr", + "type":"NRT", + "base_url":"http://N_v/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.8932093807E10, + "INDEX.sizeInGB":26.94511209335178}}]}}, + "N_13_solr":{ + "COLL_1":{ + "shard1_1_0":[{"core_node61":{ + "core":"COLL_1_shard1_1_0_replica_n59", + "shard":"shard1_1_0", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3783419579E10, + "INDEX.sizeInGB":40.77648704778403}}], + "shard1_0_1":[{"core_node58":{ + "core":"COLL_1_shard1_0_1_replica_n56", + "shard":"shard1_0_1", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4932001726E10, + "INDEX.sizeInGB":41.846187530085444}}], + "shard1_1_1":[{"core_node62":{ + "core":"COLL_1_shard1_1_1_replica_n60", + "shard":"shard1_1_1", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.811959042E10, + "INDEX.sizeInGB":44.814860839396715}}], + "shard1_0_0":[{"core_node57":{ + "core":"COLL_1_shard1_0_0_replica_n55", + "shard":"shard1_0_0", + "collection":"COLL_1", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5921892273E10, + "INDEX.sizeInGB":42.76809494290501}}]}, + "COLL_0":{"shard2":[{"core_node13":{ + "core":"COLL_0_shard2_replica_n10", + "shard":"shard2", + "collection":"COLL_0", + "node_name":"N_13_solr", + "type":"NRT", + "base_url":"http://N_13/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.4248182159E10, + "INDEX.sizeInGB":31.896105184219778}}]}}, + "N_3to_solr":{ + "COLL_1":{ + "shard1_1_0":[{"core_node84":{ + "core":"COLL_1_shard1_1_0_replica_n83", + "shard":"shard1_1_0", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "base_url":"http://N_3to/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3892348528E10, + "INDEX.sizeInGB":40.87793503701687}}], + "shard1_0_1":[{"core_node82":{ + "core":"COLL_1_shard1_0_1_replica_n81", + "shard":"shard1_0_1", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "base_url":"http://N_3to/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4936912617E10, + "INDEX.sizeInGB":41.85076115373522}}], + "shard1_1_1":[{"core_node86":{ + "core":"COLL_1_shard1_1_1_replica_n85", + "shard":"shard1_1_1", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "base_url":"http://N_3to/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":5.1015133973E10, + "INDEX.sizeInGB":47.511545916087925}}], + "shard1_0_0":[{"core_node80":{ + "core":"COLL_1_shard1_0_0_replica_n79", + "shard":"shard1_0_0", + "collection":"COLL_1", + "node_name":"N_3to_solr", + "type":"NRT", + "base_url":"http://N_3to/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.644843302E10, + "INDEX.sizeInGB":43.258474227041006}}]}, + "COLL_0":{"shard2":[{"core_node11":{ + "core":"COLL_0_shard2_replica_n8", + "shard":"shard2", + "collection":"COLL_0", + "node_name":"N_3to_solr", + "type":"NRT", + "base_url":"http://N_3to/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.0722710385E10, + "INDEX.sizeInGB":28.6127537349239}}]}}, + "N_16_solr":{ + "COLL_1":{ + "shard2_0_0":[{"core_node100":{ + "core":"COLL_1_shard2_0_0_replica_n99", + "shard":"shard2_0_0", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.8764329025E10, + "INDEX.sizeInGB":45.41532045695931}}], + "shard2_0_1":[{"core_node102":{ + "core":"COLL_1_shard2_0_1_replica_n101", + "shard":"shard2_0_1", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3740343099E10, + "INDEX.sizeInGB":40.73636894952506}}], + "shard2_1_0":[{"core_node96":{ + "core":"COLL_1_shard2_1_0_replica_n95", + "shard":"shard2_1_0", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5585236311E10, + "INDEX.sizeInGB":42.45455964561552}}], + "shard2_1_1":[{"core_node98":{ + "core":"COLL_1_shard2_1_1_replica_n97", + "shard":"shard2_1_1", + "collection":"COLL_1", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.527594328E10, + "INDEX.sizeInGB":42.16650806367397}}]}, + "COLL_0":{"shard1":[{"core_node5":{ + "core":"COLL_0_shard1_replica_n2", + "shard":"shard1", + "collection":"COLL_0", + "node_name":"N_16_solr", + "type":"NRT", + "base_url":"http://N_16/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.3775978753E10, + "INDEX.sizeInGB":31.45633149240166}}]}}, + "N_d4_solr":{ + "COLL_1":{ + "shard2_0_0":[{"core_node69":{ + "core":"COLL_1_shard2_0_0_replica_n67", + "shard":"shard2_0_0", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "base_url":"http://N_d4/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.497304707E10, + "INDEX.sizeInGB":41.8844139855355}}], + "shard2_0_1":[{"core_node70":{ + "core":"COLL_1_shard2_0_1_replica_n68", + "shard":"shard2_0_1", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "base_url":"http://N_d4/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5692831033E10, + "INDEX.sizeInGB":42.554765039123595}}], + "shard2_1_0":[{"core_node65":{ + "core":"COLL_1_shard2_1_0_replica_n63", + "shard":"shard2_1_0", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "base_url":"http://N_d4/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5935880044E10, + "INDEX.sizeInGB":42.78112206980586}}], + "shard2_1_1":[{"core_node66":{ + "core":"COLL_1_shard2_1_1_replica_n64", + "shard":"shard2_1_1", + "collection":"COLL_1", + "node_name":"N_d4_solr", + "type":"NRT", + "base_url":"http://N_d4/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5166045429E10, + "INDEX.sizeInGB":42.064157714135945}}]}, + "COLL_0":{"shard1":[{"core_node3":{ + "core":"COLL_0_shard1_replica_n1", + "shard":"shard1", + "collection":"COLL_0", + "node_name":"N_d4_solr", + "type":"NRT", + "base_url":"http://N_d4/solr", + "leader":"true", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":3.401835331E10, + "INDEX.sizeInGB":31.682060388848186}}]}}, + "N_b9_solr":{ + "COLL_1":{ + "shard1_1_0":[{"core_node92":{ + "core":"COLL_1_shard1_1_0_replica_n91", + "shard":"shard1_1_0", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5724314347E10, + "INDEX.sizeInGB":42.5840861601755}}], + "shard1_0_1":[{"core_node90":{ + "core":"COLL_1_shard1_0_1_replica_n89", + "shard":"shard1_0_1", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.6030616744E10, + "INDEX.sizeInGB":42.869352497160435}}], + "shard1_1_1":[{"core_node94":{ + "core":"COLL_1_shard1_1_1_replica_n93", + "shard":"shard1_1_1", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.574559386E10, + "INDEX.sizeInGB":42.603904251009226}}], + "shard1_0_0":[{"core_node88":{ + "core":"COLL_1_shard1_0_0_replica_n87", + "shard":"shard1_0_0", + "collection":"COLL_1", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.5100613575E10, + "INDEX.sizeInGB":42.0032195514068}}]}, + "COLL_0":{"shard2":[{"core_node9":{ + "core":"COLL_0_shard2_replica_n6", + "shard":"shard2", + "collection":"COLL_0", + "node_name":"N_b9_solr", + "type":"NRT", + "base_url":"http://N_b9/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.8865621899E10, + "INDEX.sizeInGB":26.883205304853618}}]}}, + "N_74_solr":{ + "COLL_1":{ + "shard2_0_0":[{"core_node108":{ + "core":"COLL_1_shard2_0_0_replica_n107", + "shard":"shard2_0_0", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3767024396E10, + "INDEX.sizeInGB":40.76121784374118}}], + "shard2_0_1":[{"core_node110":{ + "core":"COLL_1_shard2_0_1_replica_n109", + "shard":"shard2_0_1", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.8622428842E10, + "INDEX.sizeInGB":45.28316561318934}}], + "shard2_1_0":[{"core_node104":{ + "core":"COLL_1_shard2_1_0_replica_n103", + "shard":"shard2_1_0", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.4599223614E10, + "INDEX.sizeInGB":41.536263762041926}}], + "shard2_1_1":[{"core_node106":{ + "core":"COLL_1_shard2_1_1_replica_n105", + "shard":"shard2_1_1", + "collection":"COLL_1", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":4.3768191618E10, + "INDEX.sizeInGB":40.762304903939366}}]}, + "COLL_0":{"shard1":[{"core_node7":{ + "core":"COLL_0_shard1_replica_n4", + "shard":"shard1", + "collection":"COLL_0", + "node_name":"N_74_solr", + "type":"NRT", + "base_url":"http://N_74/solr", + "state":"active", + "force_set_state":"false", + "INDEX.sizeInBytes":2.9252853492E10, + "INDEX.sizeInGB":27.24384282901883}}]}}}} \ No newline at end of file diff --git a/solr/core/src/test-files/solr/simSnapshot/statistics.json b/solr/core/src/test-files/solr/simSnapshot/statistics.json new file mode 100644 index 00000000000..735c36e14ba --- /dev/null +++ b/solr/core/src/test-files/solr/simSnapshot/statistics.json @@ -0,0 +1,2045 @@ +{ + "coresPerNodes":{ + "5":9, + "6":36, + "12":2, + "13":1}, + "sortedNodeStats":{ + "N_0_solr":{ + "isLive":true, + "cores":12.0, + "freedisk":719.6562576293945, + "sysprop.pool":"pool-03", + "node":"N_0_solr", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_6":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":4.4921656871E10, + "INDEX.sizeInGB":41.83655313309282, + "coreNode":"core_node6", + "leader":true}}, + "COLL_l":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node10", + "leader":true}}, + "COLL_x":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":3.0928583E8, + "INDEX.sizeInGB":0.2880448754876852, + "coreNode":"core_node10", + "leader":true}}, + "COLL_1b":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node10", + "leader":true}}, + "COLL_1r":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":4.25884524E8, + "INDEX.sizeInGB":0.39663587138056755, + "coreNode":"core_node5", + "leader":true}}, + "COLL_8":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":399225.0, + "INDEX.sizeInGB":3.718072548508644E-4, + "coreNode":"core_node5", + "leader":true}}, + "COLL_q":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765, + "coreNode":"core_node10", + "leader":true}}, + "COLL_4":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":2.58797271E8, + "INDEX.sizeInGB":0.24102374073117971, + "coreNode":"core_node5", + "leader":true}}, + "COLL_1x":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":4264901.0, + "INDEX.sizeInGB":0.003971998579800129, + "coreNode":"core_node10", + "leader":true}}, + "COLL_1t":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":8.7485800719E10, + "INDEX.sizeInGB":81.47750116791576, + "coreNode":"core_node5", + "leader":true}}, + "COLL_2k":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node10", + "leader":true}}, + "COLL_22":{"shard1_replica_n9":{ + "INDEX.sizeInBytes":2.4351639993E10, + "INDEX.sizeInGB":22.679232054390013, + "coreNode":"core_node10", + "leader":true}}}}, + "N_3_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4272.45711517334, + "sysprop.pool":"pool-01", + "node":"N_3_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard16_1_0_replica_n990":{ + "INDEX.sizeInBytes":1.28724323652E11, + "INDEX.sizeInGB":119.88386851921678, + "coreNode":"core_node991"}, + "shard16_1_1_replica_n996":{ + "INDEX.sizeInBytes":1.26611980672E11, + "INDEX.sizeInGB":117.91659581661224, + "coreNode":"core_node997"}, + "shard1_1_1_replica_n2":{ + "INDEX.sizeInBytes":1.29556889925E11, + "INDEX.sizeInGB":120.65925628412515, + "coreNode":"core_node474"}, + "shard4_0_0_replica_n1736":{ + "INDEX.sizeInBytes":1.28645187639E11, + "INDEX.sizeInGB":119.81016736384481, + "coreNode":"core_node1737"}, + "shard4_1_0_replica_n1":{ + "INDEX.sizeInBytes":1.27649471364E11, + "INDEX.sizeInGB":118.88283431902528, + "coreNode":"core_node523"}, + "shard9_0_0_replica_n1814":{ + "INDEX.sizeInBytes":1.29037175651E11, + "INDEX.sizeInGB":120.17523464839906, + "coreNode":"core_node1815"}}}}, + "N_1_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4274.765396118164, + "sysprop.pool":"pool-01", + "node":"N_1_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_1_1_replica_n584":{ + "INDEX.sizeInBytes":1.2671712403E11, + "INDEX.sizeInGB":118.01451819948852, + "coreNode":"core_node586"}, + "shard16_0_0_replica_n982":{ + "INDEX.sizeInBytes":1.26766519189E11, + "INDEX.sizeInGB":118.06052102614194, + "coreNode":"core_node983"}, + "shard16_0_1_replica_n988":{ + "INDEX.sizeInBytes":1.3069803609E11, + "INDEX.sizeInGB":121.72203146852553, + "coreNode":"core_node989"}, + "shard16_1_0_replica_n992":{ + "INDEX.sizeInBytes":1.28812502313E11, + "INDEX.sizeInGB":119.96599129680544, + "coreNode":"core_node993"}, + "shard16_1_1_replica_n994":{ + "INDEX.sizeInBytes":1.26672765511E11, + "INDEX.sizeInGB":117.97320610936731, + "coreNode":"core_node995"}, + "shard18_0_0_replica_n2":{ + "INDEX.sizeInBytes":1.28033512867E11, + "INDEX.sizeInGB":119.24050084035844, + "coreNode":"core_node875"}}}}, + "N_2_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4266.604637145996, + "sysprop.pool":"pool-01", + "node":"N_2_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_0_0_replica_n1248":{ + "INDEX.sizeInBytes":1.29421522442E11, + "INDEX.sizeInGB":120.53318549133837, + "coreNode":"core_node1249", + "leader":true}, + "shard12_0_1_replica_n1254":{ + "INDEX.sizeInBytes":1.30384315739E11, + "INDEX.sizeInGB":121.42985662352294, + "coreNode":"core_node1255", + "leader":true}, + "shard5_1_0_replica_n1136":{ + "INDEX.sizeInBytes":7.6877250282E10, + "INDEX.sizeInGB":71.59751866199076, + "coreNode":"core_node1137"}, + "shard5_1_1_replica_n1138":{ + "INDEX.sizeInBytes":1.29952609098E11, + "INDEX.sizeInGB":121.02779848314822, + "coreNode":"core_node1139"}, + "shard7_0_1_replica_n1":{ + "INDEX.sizeInBytes":1.2890128588E11, + "INDEX.sizeInGB":120.04867743700743, + "coreNode":"core_node776", + "leader":true}, + "shard9_0_1_replica_n2":{ + "INDEX.sizeInBytes":1.29212951693E11, + "INDEX.sizeInGB":120.33893884439021, + "coreNode":"core_node478", + "leader":true}}}}, + "N_6_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4252.47643661499, + "sysprop.pool":"pool-01", + "node":"N_6_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard15_1_1_replica_n1708":{ + "INDEX.sizeInBytes":1.30846984322E11, + "INDEX.sizeInGB":121.86075031943619, + "coreNode":"core_node1709"}, + "shard3_1_0_replica_n1":{ + "INDEX.sizeInBytes":1.32652501535E11, + "INDEX.sizeInGB":123.54226925875992, + "coreNode":"core_node459"}, + "shard4_0_0_replica_n2":{ + "INDEX.sizeInBytes":1.28680029361E11, + "INDEX.sizeInGB":119.84261624608189, + "coreNode":"core_node520"}, + "shard4_0_1_replica_n1802":{ + "INDEX.sizeInBytes":1.28153346526E11, + "INDEX.sizeInGB":119.35210463218391, + "coreNode":"core_node1803"}, + "shard8_1_0_replica_n1810":{ + "INDEX.sizeInBytes":1.35679249773E11, + "INDEX.sizeInGB":126.36114822048694, + "coreNode":"core_node1811"}, + "shard9_0_0_replica_n1798":{ + "INDEX.sizeInBytes":1.35157081196E11, + "INDEX.sizeInGB":125.874840836972, + "coreNode":"core_node1799", + "leader":true}}}}, + "N_5_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4397.149795532227, + "sysprop.pool":"pool-01", + "node":"N_5_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard1_0_0_replica_n1724":{ + "INDEX.sizeInBytes":5.7183711221E10, + "INDEX.sizeInGB":53.25648116040975, + "coreNode":"core_node1725", + "leader":true}, + "shard1_0_1_replica_n1668":{ + "INDEX.sizeInBytes":5.9574276743E10, + "INDEX.sizeInGB":55.482868797145784, + "coreNode":"core_node1669"}, + "shard1_1_0_replica_n1720":{ + "INDEX.sizeInBytes":1.29009851855E11, + "INDEX.sizeInGB":120.14978738036007, + "coreNode":"core_node1721"}, + "shard1_1_1_replica_n416":{ + "INDEX.sizeInBytes":1.29698716918E11, + "INDEX.sizeInGB":120.79134296439588, + "coreNode":"core_node418", + "leader":true}, + "shard2_0_0_replica_n910":{ + "INDEX.sizeInBytes":1.29504451209E11, + "INDEX.sizeInGB":120.6104189241305, + "coreNode":"core_node911"}, + "shard2_0_1_replica_n916":{ + "INDEX.sizeInBytes":1.31334463143E11, + "INDEX.sizeInGB":122.31475035008043, + "coreNode":"core_node917"}}}}, + "N_4_solr":{ + "isLive":true, + "cores":12.0, + "freedisk":875.4758682250977, + "sysprop.pool":"pool-03", + "node":"N_4_solr", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_6":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":2.0738852096E10, + "INDEX.sizeInGB":19.314561128616333, + "coreNode":"core_node5"}}, + "COLL_l":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node6"}}, + "COLL_x":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":3.03301808E8, + "INDEX.sizeInGB":0.28247182071208954, + "coreNode":"core_node6"}}, + "COLL_1b":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node6"}}, + "COLL_1r":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":4.46826689E8, + "INDEX.sizeInGB":0.4161397824063897, + "coreNode":"core_node6"}}, + "COLL_8":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":356048.0, + "INDEX.sizeInGB":3.315955400466919E-4, + "coreNode":"core_node6"}}, + "COLL_q":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765, + "coreNode":"core_node6"}}, + "COLL_4":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":2.59832461E8, + "INDEX.sizeInGB":0.2419878365471959, + "coreNode":"core_node6"}}, + "COLL_1x":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":4255591.0, + "INDEX.sizeInGB":0.003963327966630459, + "coreNode":"core_node6"}}, + "COLL_1t":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":8.5380419785E10, + "INDEX.sizeInGB":79.51671237591654, + "coreNode":"core_node6"}}, + "COLL_2k":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node6"}}, + "COLL_22":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":2.436290627E10, + "INDEX.sizeInGB":22.689724592491984, + "coreNode":"core_node5"}}}}, + "N_7_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4268.472709655762, + "sysprop.pool":"pool-01", + "node":"N_7_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard13_0_0_replica_n1712":{ + "INDEX.sizeInBytes":1.30437704659E11, + "INDEX.sizeInGB":121.47957892995328, + "coreNode":"core_node1713"}, + "shard13_0_1_replica_n1766":{ + "INDEX.sizeInBytes":1.30339106107E11, + "INDEX.sizeInGB":121.38775187265128, + "coreNode":"core_node1767"}, + "shard13_1_0_replica_n1688":{ + "INDEX.sizeInBytes":1.29592823396E11, + "INDEX.sizeInGB":120.69272193685174, + "coreNode":"core_node1689"}, + "shard13_1_1_replica_n806":{ + "INDEX.sizeInBytes":1.2961448776E11, + "INDEX.sizeInGB":120.71289844810963, + "coreNode":"core_node808"}, + "shard15_0_0_replica_n607":{ + "INDEX.sizeInBytes":1.27258670055E11, + "INDEX.sizeInGB":118.5188722377643, + "coreNode":"core_node609"}, + "shard15_0_1_replica_n608":{ + "INDEX.sizeInBytes":1.2722802278E11, + "INDEX.sizeInGB":118.49032973870635, + "coreNode":"core_node610"}}}}, + "N_a_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4262.172649383545, + "sysprop.pool":"pool-01", + "node":"N_a_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard14_0_0_replica_n1118":{ + "INDEX.sizeInBytes":1.30313698451E11, + "INDEX.sizeInGB":121.36408914905041, + "coreNode":"core_node1119"}, + "shard14_0_1_replica_n1124":{ + "INDEX.sizeInBytes":1.31102045065E11, + "INDEX.sizeInGB":122.09829414729029, + "coreNode":"core_node1125"}, + "shard14_1_0_replica_n833":{ + "INDEX.sizeInBytes":1.27418065808E11, + "INDEX.sizeInGB":118.66732110083103, + "coreNode":"core_node835"}, + "shard14_1_1_replica_n834":{ + "INDEX.sizeInBytes":1.29318568492E11, + "INDEX.sizeInGB":120.43730215355754, + "coreNode":"core_node836"}, + "shard15_1_0_replica_n1174":{ + "INDEX.sizeInBytes":1.33321224738E11, + "INDEX.sizeInGB":124.16506627388299, + "coreNode":"core_node1175"}, + "shard3_0_0_replica_n1808":{ + "INDEX.sizeInBytes":1.29798330608E11, + "INDEX.sizeInGB":120.88411544263363, + "coreNode":"core_node1809"}}}}, + "N_13_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":718.1634063720703, + "sysprop.pool":"pool-02", + "node":"N_13_solr", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard1_0_0_replica_n55":{ + "INDEX.sizeInBytes":4.5921892273E10, + "INDEX.sizeInGB":42.76809494290501, + "coreNode":"core_node57"}, + "shard1_0_1_replica_n56":{ + "INDEX.sizeInBytes":4.4932001726E10, + "INDEX.sizeInGB":41.846187530085444, + "coreNode":"core_node58"}, + "shard1_1_0_replica_n59":{ + "INDEX.sizeInBytes":4.3783419579E10, + "INDEX.sizeInGB":40.77648704778403, + "coreNode":"core_node61"}, + "shard1_1_1_replica_n60":{ + "INDEX.sizeInBytes":4.811959042E10, + "INDEX.sizeInGB":44.814860839396715, + "coreNode":"core_node62"}}, + "COLL_0":{"shard2_replica_n10":{ + "INDEX.sizeInBytes":3.4248182159E10, + "INDEX.sizeInGB":31.896105184219778, + "coreNode":"core_node13"}}}}, + "N_1d_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4273.009799957275, + "sysprop.pool":"pool-01", + "node":"N_1d_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_1_0_replica_n1788":{ + "INDEX.sizeInBytes":1.27487519935E11, + "INDEX.sizeInGB":118.73200529720634, + "coreNode":"core_node1789"}, + "shard14_1_0_replica_n1128":{ + "INDEX.sizeInBytes":1.27407685053E11, + "INDEX.sizeInGB":118.65765326935798, + "coreNode":"core_node1129", + "leader":true}, + "shard14_1_1_replica_n1740":{ + "INDEX.sizeInBytes":1.29231781669E11, + "INDEX.sizeInGB":120.35647562611848, + "coreNode":"core_node1741", + "leader":true}, + "shard15_0_0_replica_n2":{ + "INDEX.sizeInBytes":1.27262832088E11, + "INDEX.sizeInGB":118.5227484330535, + "coreNode":"core_node732", + "leader":true}, + "shard3_1_0_replica_n423":{ + "INDEX.sizeInBytes":1.2828759808E11, + "INDEX.sizeInGB":119.47713613510132, + "coreNode":"core_node425", + "leader":true}, + "shard3_1_1_replica_n424":{ + "INDEX.sizeInBytes":1.29948029547E11, + "INDEX.sizeInGB":121.02353344392031, + "coreNode":"core_node426", + "leader":true}}}}, + "N_1m_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4257.921604156494, + "sysprop.pool":"pool-01", + "node":"N_1m_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard1_1_0_replica_n1678":{ + "INDEX.sizeInBytes":1.28970690262E11, + "INDEX.sizeInGB":120.11331530474126, + "coreNode":"core_node1679"}, + "shard6_1_0_replica_n1166":{ + "INDEX.sizeInBytes":1.29376799009E11, + "INDEX.sizeInGB":120.49153354857117, + "coreNode":"core_node1167"}, + "shard6_1_1_replica_n1744":{ + "INDEX.sizeInBytes":1.31273933482E11, + "INDEX.sizeInGB":122.25837771035731, + "coreNode":"core_node1745"}, + "shard8_0_0_replica_n886":{ + "INDEX.sizeInBytes":1.30145902623E11, + "INDEX.sizeInGB":121.20781710650772, + "coreNode":"core_node887"}, + "shard8_0_1_replica_n892":{ + "INDEX.sizeInBytes":1.32681734677E11, + "INDEX.sizeInGB":123.56949474383146, + "coreNode":"core_node893"}, + "shard8_1_1_replica_n1710":{ + "INDEX.sizeInBytes":1.33374089494E11, + "INDEX.sizeInGB":124.21430041454732, + "coreNode":"core_node1711"}}}}, + "N_17_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4093.756145477295, + "sysprop.pool":"pool-01", + "node":"N_17_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard11_1_1_replica_n762":{ + "INDEX.sizeInBytes":1.30871431234E11, + "INDEX.sizeInGB":121.88351828046143, + "coreNode":"core_node768", + "leader":true}, + "shard12_0_0_replica_n1750":{ + "INDEX.sizeInBytes":1.2936875619E11, + "INDEX.sizeInGB":120.48404308967292, + "coreNode":"core_node1751"}, + "shard12_0_1_replica_n1698":{ + "INDEX.sizeInBytes":1.30350286057E11, + "INDEX.sizeInGB":121.39816401246935, + "coreNode":"core_node1699"}, + "shard14_0_0_replica_n1120":{ + "INDEX.sizeInBytes":1.3029908264E11, + "INDEX.sizeInGB":121.3504771143198, + "coreNode":"core_node1121"}, + "shard14_0_1_replica_n1122":{ + "INDEX.sizeInBytes":1.31146492351E11, + "INDEX.sizeInGB":122.13968890812248, + "coreNode":"core_node1123"}, + "shard18_0_1_replica_n2":{ + "INDEX.sizeInBytes":1.28174988934E11, + "INDEX.sizeInGB":119.37226069532335, + "coreNode":"core_node877"}}}}, + "N_11_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4264.325901031494, + "sysprop.pool":"pool-01", + "node":"N_11_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_1_1_replica_n2":{ + "INDEX.sizeInBytes":1.26693447901E11, + "INDEX.sizeInGB":117.99246808607131, + "coreNode":"core_node662"}, + "shard6_0_0_replica_n1209":{ + "INDEX.sizeInBytes":1.28939953876E11, + "INDEX.sizeInGB":120.08468981459737, + "coreNode":"core_node1210"}, + "shard6_0_1_replica_n1211":{ + "INDEX.sizeInBytes":1.28744354495E11, + "INDEX.sizeInGB":119.90252369549125, + "coreNode":"core_node1212"}, + "shard9_0_1_replica_n436":{ + "INDEX.sizeInBytes":1.29282915395E11, + "INDEX.sizeInGB":120.40409761946648, + "coreNode":"core_node438"}, + "shard9_1_0_replica_n1152":{ + "INDEX.sizeInBytes":1.31406038908E11, + "INDEX.sizeInGB":122.3814104758203, + "coreNode":"core_node1153"}, + "shard9_1_1_replica_n1154":{ + "INDEX.sizeInBytes":1.33894519282E11, + "INDEX.sizeInGB":124.69898842461407, + "coreNode":"core_node1155"}}}}, + "N_z_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4215.115695953369, + "sysprop.pool":"pool-01", + "node":"N_z_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard14_1_0_replica_n1126":{ + "INDEX.sizeInBytes":1.27443177079E11, + "INDEX.sizeInGB":118.69070779439062, + "coreNode":"core_node1127"}, + "shard1_0_0_replica_n1716":{ + "INDEX.sizeInBytes":5.7185112146E10, + "INDEX.sizeInGB":53.25778587348759, + "coreNode":"core_node1717"}, + "shard8_0_0_replica_n1730":{ + "INDEX.sizeInBytes":1.30170301246E11, + "INDEX.sizeInGB":121.23054009489715, + "coreNode":"core_node1731"}, + "shard8_0_1_replica_n1694":{ + "INDEX.sizeInBytes":1.39918850407E11, + "INDEX.sizeInGB":130.30958399828523, + "coreNode":"core_node1695", + "leader":true}, + "shard8_1_0_replica_n1706":{ + "INDEX.sizeInBytes":1.35679630668E11, + "INDEX.sizeInGB":126.361502956599, + "coreNode":"core_node1707", + "leader":true}, + "shard8_1_1_replica_n1754":{ + "INDEX.sizeInBytes":1.33314153125E11, + "INDEX.sizeInGB":124.15848032105714, + "coreNode":"core_node1755", + "leader":true}}}}, + "N_t_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4266.856658935547, + "sysprop.pool":"pool-01", + "node":"N_t_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard10_0_0_replica_n1732":{ + "INDEX.sizeInBytes":1.2914349283E11, + "INDEX.sizeInGB":120.27425023727119, + "coreNode":"core_node1733"}, + "shard10_0_1_replica_n904":{ + "INDEX.sizeInBytes":1.28142990156E11, + "INDEX.sizeInGB":119.34245951101184, + "coreNode":"core_node905"}, + "shard10_1_1_replica_n1742":{ + "INDEX.sizeInBytes":1.30757016285E11, + "INDEX.sizeInGB":121.77696105558425, + "coreNode":"core_node1743", + "leader":true}, + "shard11_0_0_replica_n1183":{ + "INDEX.sizeInBytes":1.2777477116E11, + "INDEX.sizeInGB":118.99952884763479, + "coreNode":"core_node1185", + "leader":true}, + "shard11_0_1_replica_n1184":{ + "INDEX.sizeInBytes":1.27980394382E11, + "INDEX.sizeInGB":119.19103039614856, + "coreNode":"core_node1195", + "leader":true}, + "shard11_1_0_replica_n1790":{ + "INDEX.sizeInBytes":1.32416023485E11, + "INDEX.sizeInGB":123.32203191239387, + "coreNode":"core_node1791"}}}}, + "N_1c_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4181.229598999023, + "sysprop.pool":"pool-01", + "node":"N_1c_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard18_0_0_replica_n1":{ + "INDEX.sizeInBytes":1.28011422432E11, + "INDEX.sizeInGB":119.21992751955986, + "coreNode":"core_node874", + "leader":true}, + "shard18_0_1_replica_n1":{ + "INDEX.sizeInBytes":1.30729375574E11, + "INDEX.sizeInGB":121.75121863745153, + "coreNode":"core_node876"}, + "shard5_0_0_replica_n998":{ + "INDEX.sizeInBytes":1.31937405764E11, + "INDEX.sizeInGB":122.87628442421556, + "coreNode":"core_node999", + "leader":true}, + "shard5_0_1_replica_n1702":{ + "INDEX.sizeInBytes":1.31521149156E11, + "INDEX.sizeInGB":122.48861524835229, + "coreNode":"core_node1703", + "leader":true}, + "shard5_1_0_replica_n1134":{ + "INDEX.sizeInBytes":1.30030877168E11, + "INDEX.sizeInGB":121.1006913036108, + "coreNode":"core_node1135", + "leader":true}, + "shard5_1_1_replica_n1140":{ + "INDEX.sizeInBytes":1.29917464329E11, + "INDEX.sizeInGB":120.99506736639887, + "coreNode":"core_node1141", + "leader":true}}}}, + "N_1i_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4266.027156829834, + "sysprop.pool":"pool-01", + "node":"N_1i_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard10_1_0_replica_n1692":{ + "INDEX.sizeInBytes":1.27561685082E11, + "INDEX.sizeInGB":118.80107697285712, + "coreNode":"core_node1693", + "leader":true}, + "shard10_1_1_replica_n1778":{ + "INDEX.sizeInBytes":1.30255789623E11, + "INDEX.sizeInGB":121.31015735026449, + "coreNode":"core_node1779"}, + "shard17_0_0_replica_n1780":{ + "INDEX.sizeInBytes":1.30702509646E11, + "INDEX.sizeInGB":121.72619779221714, + "coreNode":"core_node1781"}, + "shard17_0_1_replica_n1116":{ + "INDEX.sizeInBytes":1.30694171889E11, + "INDEX.sizeInGB":121.71843265090138, + "coreNode":"core_node1117"}, + "shard17_1_0_replica_n1198":{ + "INDEX.sizeInBytes":1.29069936299E11, + "INDEX.sizeInGB":120.20574537944049, + "coreNode":"core_node1200"}, + "shard17_1_1_replica_n1199":{ + "INDEX.sizeInBytes":1.28764084367E11, + "INDEX.sizeInGB":119.92089857067913, + "coreNode":"core_node1203"}}}}, + "N_g_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4007.3253440856934, + "sysprop.pool":"pool-01", + "node":"N_g_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard2_1_0_replica_n1680":{ + "INDEX.sizeInBytes":1.3012044407E11, + "INDEX.sizeInGB":121.18410698138177, + "coreNode":"core_node1681"}, + "shard5_0_0_replica_n1768":{ + "INDEX.sizeInBytes":1.31922267714E11, + "INDEX.sizeInGB":122.8621860165149, + "coreNode":"core_node1769"}, + "shard5_0_1_replica_n1770":{ + "INDEX.sizeInBytes":1.31464210597E11, + "INDEX.sizeInGB":122.43558708298951, + "coreNode":"core_node1771"}, + "shard5_1_0_replica_n1782":{ + "INDEX.sizeInBytes":1.30012462556E11, + "INDEX.sizeInGB":121.08354135975242, + "coreNode":"core_node1783"}, + "shard5_1_1_replica_n859":{ + "INDEX.sizeInBytes":1.29967769078E11, + "INDEX.sizeInGB":121.04191731475294, + "coreNode":"core_node861"}, + "shard9_0_0_replica_n1682":{ + "INDEX.sizeInBytes":1.29248772716E11, + "INDEX.sizeInGB":120.37229977175593, + "coreNode":"core_node1683"}}}}, + "N_8_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4262.037788391113, + "sysprop.pool":"pool-01", + "node":"N_8_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard16_0_0_replica_n854":{ + "INDEX.sizeInBytes":1.2677230126E11, + "INDEX.sizeInGB":118.06590599939227, + "coreNode":"core_node856", + "leader":true}, + "shard16_0_1_replica_n855":{ + "INDEX.sizeInBytes":1.30788718518E11, + "INDEX.sizeInGB":121.80648606084287, + "coreNode":"core_node857", + "leader":true}, + "shard16_1_0_replica_n850":{ + "INDEX.sizeInBytes":1.28801317856E11, + "INDEX.sizeInGB":119.95557495951653, + "coreNode":"core_node852", + "leader":true}, + "shard16_1_1_replica_n851":{ + "INDEX.sizeInBytes":1.33685050832E11, + "INDEX.sizeInGB":124.50390572845936, + "coreNode":"core_node853", + "leader":true}, + "shard2_0_0_replica_n794":{ + "INDEX.sizeInBytes":1.29517293483E11, + "INDEX.sizeInGB":120.6223792238161, + "coreNode":"core_node796", + "leader":true}, + "shard2_0_1_replica_n795":{ + "INDEX.sizeInBytes":1.31328007233E11, + "INDEX.sizeInGB":122.30873781535774, + "coreNode":"core_node800", + "leader":true}}}}, + "N_1f_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4260.807849884033, + "sysprop.pool":"pool-01", + "node":"N_1f_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard11_0_0_replica_n1216":{ + "INDEX.sizeInBytes":1.27720861488E11, + "INDEX.sizeInGB":118.94932155311108, + "coreNode":"core_node1217"}, + "shard11_0_1_replica_n1222":{ + "INDEX.sizeInBytes":1.27989218509E11, + "INDEX.sizeInGB":119.19924850482494, + "coreNode":"core_node1223"}, + "shard11_1_0_replica_n778":{ + "INDEX.sizeInBytes":1.32552454912E11, + "INDEX.sizeInGB":123.44909358024597, + "coreNode":"core_node779"}, + "shard11_1_1_replica_n782":{ + "INDEX.sizeInBytes":1.30995783614E11, + "INDEX.sizeInGB":121.99933045916259, + "coreNode":"core_node783"}, + "shard5_0_0_replica_n1000":{ + "INDEX.sizeInBytes":1.31960210955E11, + "INDEX.sizeInGB":122.89752341341227, + "coreNode":"core_node1001"}, + "shard5_0_1_replica_n1002":{ + "INDEX.sizeInBytes":1.31534942129E11, + "INDEX.sizeInGB":122.50146095547825, + "coreNode":"core_node1003"}}}}, + "N_v_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":412.18456649780273, + "sysprop.pool":"pool-02", + "node":"N_v_solr", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard3_0_0_replica_n119":{ + "INDEX.sizeInBytes":4.3809517838E10, + "INDEX.sizeInGB":40.80079294554889, + "coreNode":"core_node120"}, + "shard3_0_1_replica_n121":{ + "INDEX.sizeInBytes":4.6310602091E10, + "INDEX.sizeInGB":43.13010917138308, + "coreNode":"core_node122"}, + "shard3_1_0_replica_n123":{ + "INDEX.sizeInBytes":4.5638162031E10, + "INDEX.sizeInGB":42.503850563429296, + "coreNode":"core_node124"}, + "shard3_1_1_replica_n125":{ + "INDEX.sizeInBytes":4.4257494507E10, + "INDEX.sizeInGB":41.21800373028964, + "coreNode":"core_node126"}}, + "COLL_0":{"shard3_replica_n16":{ + "INDEX.sizeInBytes":2.8932093807E10, + "INDEX.sizeInGB":26.94511209335178, + "coreNode":"core_node18"}}}}, + "N_m_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4267.171646118164, + "sysprop.pool":"pool-01", + "node":"N_m_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard17_1_0_replica_n1226":{ + "INDEX.sizeInBytes":1.29049722959E11, + "INDEX.sizeInGB":120.18692023959011, + "coreNode":"core_node1227"}, + "shard17_1_1_replica_n1228":{ + "INDEX.sizeInBytes":1.28816978409E11, + "INDEX.sizeInGB":119.97015998605639, + "coreNode":"core_node1229"}, + "shard6_0_0_replica_n1207":{ + "INDEX.sizeInBytes":1.28936808614E11, + "INDEX.sizeInGB":120.08176056109369, + "coreNode":"core_node1208"}, + "shard6_0_1_replica_n1213":{ + "INDEX.sizeInBytes":1.28745543493E11, + "INDEX.sizeInGB":119.90363103616983, + "coreNode":"core_node1214"}, + "shard6_1_1_replica_n1170":{ + "INDEX.sizeInBytes":1.31256081422E11, + "INDEX.sizeInGB":122.24175168387592, + "coreNode":"core_node1171"}, + "shard9_0_1_replica_n1":{ + "INDEX.sizeInBytes":1.29063920601E11, + "INDEX.sizeInGB":120.20014282409102, + "coreNode":"core_node477"}}}}, + "N_16_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":795.7872657775879, + "sysprop.pool":"pool-02", + "node":"N_16_solr", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard2_0_0_replica_n99":{ + "INDEX.sizeInBytes":4.8764329025E10, + "INDEX.sizeInGB":45.41532045695931, + "coreNode":"core_node100"}, + "shard2_0_1_replica_n101":{ + "INDEX.sizeInBytes":4.3740343099E10, + "INDEX.sizeInGB":40.73636894952506, + "coreNode":"core_node102"}, + "shard2_1_0_replica_n95":{ + "INDEX.sizeInBytes":4.5585236311E10, + "INDEX.sizeInGB":42.45455964561552, + "coreNode":"core_node96"}, + "shard2_1_1_replica_n97":{ + "INDEX.sizeInBytes":4.527594328E10, + "INDEX.sizeInGB":42.16650806367397, + "coreNode":"core_node98"}}, + "COLL_0":{"shard1_replica_n2":{ + "INDEX.sizeInBytes":3.3775978753E10, + "INDEX.sizeInGB":31.45633149240166, + "coreNode":"core_node5"}}}}, + "N_3a_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":407.706729888916, + "sysprop.pool":"pool-02", + "node":"N_3a_solr", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard3_0_0_replica_n71":{ + "INDEX.sizeInBytes":4.5160600486E10, + "INDEX.sizeInGB":42.05908671580255, + "coreNode":"core_node73"}, + "shard3_0_1_replica_n72":{ + "INDEX.sizeInBytes":4.5879426317E10, + "INDEX.sizeInGB":42.72854543942958, + "coreNode":"core_node74"}, + "shard3_1_0_replica_n75":{ + "INDEX.sizeInBytes":4.5090380622E10, + "INDEX.sizeInGB":41.99368937127292, + "coreNode":"core_node77"}, + "shard3_1_1_replica_n76":{ + "INDEX.sizeInBytes":4.6849085882E10, + "INDEX.sizeInGB":43.631611282005906, + "coreNode":"core_node78"}}, + "COLL_0":{"shard3_replica_n14":{ + "INDEX.sizeInBytes":3.0819950704E10, + "INDEX.sizeInGB":28.70331583917141, + "coreNode":"core_node17"}}}}, + "N_u_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4260.821304321289, + "sysprop.pool":"pool-01", + "node":"N_u_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard13_0_0_replica_n1256":{ + "INDEX.sizeInBytes":1.30381429251E11, + "INDEX.sizeInGB":121.42716837208718, + "coreNode":"core_node1257"}, + "shard13_0_1_replica_n1262":{ + "INDEX.sizeInBytes":1.30321828131E11, + "INDEX.sizeInGB":121.37166050355881, + "coreNode":"core_node1263"}, + "shard13_1_0_replica_n1762":{ + "INDEX.sizeInBytes":1.29567251239E11, + "INDEX.sizeInGB":120.66890600975603, + "coreNode":"core_node1763"}, + "shard13_1_1_replica_n920":{ + "INDEX.sizeInBytes":1.29634542289E11, + "INDEX.sizeInGB":120.73157568369061, + "coreNode":"core_node921", + "leader":true}, + "shard15_0_1_replica_n2":{ + "INDEX.sizeInBytes":1.27250282639E11, + "INDEX.sizeInGB":118.51106084790081, + "coreNode":"core_node734", + "leader":true}, + "shard8_1_0_replica_n1764":{ + "INDEX.sizeInBytes":1.35571920799E11, + "INDEX.sizeInGB":126.26119032409042, + "coreNode":"core_node1765"}}}}, + "N_e_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4334.874732971191, + "sysprop.pool":"pool-01", + "node":"N_e_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard13_1_0_replica_n922":{ + "INDEX.sizeInBytes":1.29514183189E11, + "INDEX.sizeInGB":120.6194825368002, + "coreNode":"core_node923", + "leader":true}, + "shard13_1_1_replica_n924":{ + "INDEX.sizeInBytes":1.29598508564E11, + "INDEX.sizeInGB":120.69801666215062, + "coreNode":"core_node925"}, + "shard15_0_0_replica_n1":{ + "INDEX.sizeInBytes":1.27235871561E11, + "INDEX.sizeInGB":118.49763948563486, + "coreNode":"core_node731"}, + "shard18_0_0_replica_n1818":{ + "INDEX.sizeInBytes":1.28218931509E11, + "INDEX.sizeInGB":119.41318540740758, + "coreNode":"core_node1819"}, + "shard18_1_0_replica_n2":{ + "INDEX.sizeInBytes":1.29108586002E11, + "INDEX.sizeInGB":120.24174072034657, + "coreNode":"core_node672"}, + "shard1_0_1_replica_n1718":{ + "INDEX.sizeInBytes":5.9506746089E10, + "INDEX.sizeInGB":55.41997597459704, + "coreNode":"core_node1719", + "leader":true}}}}, + "N_29_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4303.548599243164, + "sysprop.pool":"pool-01", + "node":"N_29_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard6_1_0_replica_n1792":{ + "INDEX.sizeInBytes":1.29365181039E11, + "INDEX.sizeInGB":120.48071347083896, + "coreNode":"core_node1793"}, + "shard7_0_1_replica_n2":{ + "INDEX.sizeInBytes":8.6794048237E10, + "INDEX.sizeInGB":80.83325646538287, + "coreNode":"core_node777"}, + "shard7_1_0_replica_n1142":{ + "INDEX.sizeInBytes":1.2946739865E11, + "INDEX.sizeInGB":120.57591103948653, + "coreNode":"core_node1143"}, + "shard7_1_1_replica_n1758":{ + "INDEX.sizeInBytes":1.28546712309E11, + "INDEX.sizeInGB":119.7184550659731, + "coreNode":"core_node1759"}, + "shard8_0_0_replica_n1690":{ + "INDEX.sizeInBytes":1.30176337999E11, + "INDEX.sizeInGB":121.23616225924343, + "coreNode":"core_node1691", + "leader":true}, + "shard8_0_1_replica_n1786":{ + "INDEX.sizeInBytes":1.32692723859E11, + "INDEX.sizeInGB":123.57972921710461, + "coreNode":"core_node1787"}}}}, + "N_2u_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4266.648368835449, + "sysprop.pool":"pool-01", + "node":"N_2u_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_1_0_replica_n2":{ + "INDEX.sizeInBytes":1.27387972534E11, + "INDEX.sizeInGB":118.63929455541074, + "coreNode":"core_node660"}, + "shard17_0_0_replica_n1734":{ + "INDEX.sizeInBytes":1.31102615765E11, + "INDEX.sizeInGB":122.09882565308362, + "coreNode":"core_node1735"}, + "shard17_0_1_replica_n1114":{ + "INDEX.sizeInBytes":1.30049647193E11, + "INDEX.sizeInGB":121.1181722516194, + "coreNode":"core_node1115"}, + "shard17_1_0_replica_n1224":{ + "INDEX.sizeInBytes":1.29066474889E11, + "INDEX.sizeInGB":120.20252169016749, + "coreNode":"core_node1225", + "leader":true}, + "shard17_1_1_replica_n1230":{ + "INDEX.sizeInBytes":1.287734207E11, + "INDEX.sizeInGB":119.92959370836616, + "coreNode":"core_node1231", + "leader":true}, + "shard3_1_1_replica_n1":{ + "INDEX.sizeInBytes":1.29953637358E11, + "INDEX.sizeInGB":121.02875612489879, + "coreNode":"core_node461"}}}}, + "N_2w_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4336.208312988281, + "sysprop.pool":"pool-01", + "node":"N_2w_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard18_1_0_replica_n1":{ + "INDEX.sizeInBytes":1.28884297502E11, + "INDEX.sizeInGB":120.03285577706993, + "coreNode":"core_node671"}, + "shard18_1_1_replica_n1":{ + "INDEX.sizeInBytes":1.28226679933E11, + "INDEX.sizeInGB":119.42040168959647, + "coreNode":"core_node673"}, + "shard1_0_1_replica_n1676":{ + "INDEX.sizeInBytes":5.9557275352E10, + "INDEX.sizeInGB":55.46703501790762, + "coreNode":"core_node1677"}, + "shard1_1_1_replica_n1806":{ + "INDEX.sizeInBytes":1.2954748046E11, + "INDEX.sizeInGB":120.6504930369556, + "coreNode":"core_node1807"}, + "shard4_1_0_replica_n1774":{ + "INDEX.sizeInBytes":1.27659935903E11, + "INDEX.sizeInGB":118.89258018042892, + "coreNode":"core_node1775"}, + "shard4_1_1_replica_n1804":{ + "INDEX.sizeInBytes":1.27878088796E11, + "INDEX.sizeInGB":119.0957508943975, + "coreNode":"core_node1805"}}}}, + "N_74_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":802.5921897888184, + "sysprop.pool":"pool-02", + "node":"N_74_solr", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard2_0_0_replica_n107":{ + "INDEX.sizeInBytes":4.3767024396E10, + "INDEX.sizeInGB":40.76121784374118, + "coreNode":"core_node108"}, + "shard2_0_1_replica_n109":{ + "INDEX.sizeInBytes":4.8622428842E10, + "INDEX.sizeInGB":45.28316561318934, + "coreNode":"core_node110"}, + "shard2_1_0_replica_n103":{ + "INDEX.sizeInBytes":4.4599223614E10, + "INDEX.sizeInGB":41.536263762041926, + "coreNode":"core_node104"}, + "shard2_1_1_replica_n105":{ + "INDEX.sizeInBytes":4.3768191618E10, + "INDEX.sizeInGB":40.762304903939366, + "coreNode":"core_node106"}}, + "COLL_0":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":2.9252853492E10, + "INDEX.sizeInGB":27.24384282901883, + "coreNode":"core_node7"}}}}, + "N_6i_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4269.712917327881, + "sysprop.pool":"pool-01", + "node":"N_6i_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard10_0_0_replica_n896":{ + "INDEX.sizeInBytes":1.29103730913E11, + "INDEX.sizeInGB":120.2372190663591, + "coreNode":"core_node897"}, + "shard10_0_1_replica_n1738":{ + "INDEX.sizeInBytes":1.28024871739E11, + "INDEX.sizeInGB":119.2324531627819, + "coreNode":"core_node1739"}, + "shard10_1_0_replica_n829":{ + "INDEX.sizeInBytes":1.27564995026E11, + "INDEX.sizeInGB":118.80415959842503, + "coreNode":"core_node831"}, + "shard10_1_1_replica_n830":{ + "INDEX.sizeInBytes":1.30273229534E11, + "INDEX.sizeInGB":121.32639953307807, + "coreNode":"core_node840"}, + "shard2_1_0_replica_n1726":{ + "INDEX.sizeInBytes":1.30025926492E11, + "INDEX.sizeInGB":121.0960806272924, + "coreNode":"core_node1727"}, + "shard2_1_1_replica_n978":{ + "INDEX.sizeInBytes":1.2815510735E11, + "INDEX.sizeInGB":119.35374452732503, + "coreNode":"core_node979"}}}}, + "N_dj_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4162.087951660156, + "sysprop.pool":"pool-01", + "node":"N_dj_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard13_0_0_replica_n1748":{ + "INDEX.sizeInBytes":1.30427736106E11, + "INDEX.sizeInGB":121.47029499150813, + "coreNode":"core_node1749", + "leader":true}, + "shard13_0_1_replica_n1714":{ + "INDEX.sizeInBytes":1.30355121703E11, + "INDEX.sizeInGB":121.402667558752, + "coreNode":"core_node1715", + "leader":true}, + "shard18_0_1_replica_n771":{ + "INDEX.sizeInBytes":1.30821199599E11, + "INDEX.sizeInGB":121.83673642482609, + "coreNode":"core_node773", + "leader":true}, + "shard1_1_0_replica_n1":{ + "INDEX.sizeInBytes":1.29057719236E11, + "INDEX.sizeInGB":120.19436735287309, + "coreNode":"core_node471", + "leader":true}, + "shard7_1_0_replica_n926":{ + "INDEX.sizeInBytes":1.29963886019E11, + "INDEX.sizeInGB":121.03830093424767, + "coreNode":"core_node928", + "leader":true}, + "shard7_1_1_replica_n927":{ + "INDEX.sizeInBytes":1.28538540188E11, + "INDEX.sizeInGB":119.71084418520331, + "coreNode":"core_node941", + "leader":true}}}}, + "N_6c_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4269.135753631592, + "sysprop.pool":"pool-01", + "node":"N_6c_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard17_0_0_replica_n842":{ + "INDEX.sizeInBytes":1.30743109221E11, + "INDEX.sizeInGB":121.76400909293443, + "coreNode":"core_node844", + "leader":true}, + "shard17_0_1_replica_n843":{ + "INDEX.sizeInBytes":1.30730929322E11, + "INDEX.sizeInGB":121.7526656780392, + "coreNode":"core_node848", + "leader":true}, + "shard4_0_0_replica_n443":{ + "INDEX.sizeInBytes":1.28741762257E11, + "INDEX.sizeInGB":119.90010948572308, + "coreNode":"core_node445", + "leader":true}, + "shard4_0_1_replica_n444":{ + "INDEX.sizeInBytes":1.28032413116E11, + "INDEX.sizeInGB":119.23947661742568, + "coreNode":"core_node446", + "leader":true}, + "shard4_1_0_replica_n455":{ + "INDEX.sizeInBytes":1.27664473589E11, + "INDEX.sizeInGB":118.89680622983724, + "coreNode":"core_node457", + "leader":true}, + "shard4_1_1_replica_n456":{ + "INDEX.sizeInBytes":1.27865802727E11, + "INDEX.sizeInGB":119.08430860098451, + "coreNode":"core_node458", + "leader":true}}}}, + "N_9o_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4265.881809234619, + "sysprop.pool":"pool-01", + "node":"N_9o_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard11_0_0_replica_n1218":{ + "INDEX.sizeInBytes":1.28002391411E11, + "INDEX.sizeInGB":119.21151672583073, + "coreNode":"core_node1219"}, + "shard11_0_1_replica_n1220":{ + "INDEX.sizeInBytes":1.28020049235E11, + "INDEX.sizeInGB":119.22796185594052, + "coreNode":"core_node1221"}, + "shard11_1_0_replica_n780":{ + "INDEX.sizeInBytes":1.32420261013E11, + "INDEX.sizeInGB":123.32597841788083, + "coreNode":"core_node781", + "leader":true}, + "shard11_1_1_replica_n784":{ + "INDEX.sizeInBytes":1.30909357727E11, + "INDEX.sizeInGB":121.91884007956833, + "coreNode":"core_node785"}, + "shard7_0_0_replica_n764":{ + "INDEX.sizeInBytes":1.28994593549E11, + "INDEX.sizeInGB":120.13557697553188, + "coreNode":"core_node766"}, + "shard7_0_1_replica_n765":{ + "INDEX.sizeInBytes":1.28908501869E11, + "INDEX.sizeInGB":120.0553978504613, + "coreNode":"core_node769"}}}}, + "N_4g_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4259.9677734375, + "sysprop.pool":"pool-01", + "node":"N_4g_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard18_1_0_replica_n623":{ + "INDEX.sizeInBytes":1.28955475131E11, + "INDEX.sizeInGB":120.09914510976523, + "coreNode":"core_node625", + "leader":true}, + "shard18_1_1_replica_n624":{ + "INDEX.sizeInBytes":1.28190099634E11, + "INDEX.sizeInGB":119.38633363135159, + "coreNode":"core_node626", + "leader":true}, + "shard2_1_1_replica_n1812":{ + "INDEX.sizeInBytes":1.28164947427E11, + "INDEX.sizeInGB":119.36290881317109, + "coreNode":"core_node1813"}, + "shard8_1_1_replica_n1794":{ + "INDEX.sizeInBytes":1.33276674177E11, + "INDEX.sizeInGB":124.1235753307119, + "coreNode":"core_node1795"}, + "shard9_1_0_replica_n929":{ + "INDEX.sizeInBytes":1.31111103315E11, + "INDEX.sizeInGB":122.1067303000018, + "coreNode":"core_node931", + "leader":true}, + "shard9_1_1_replica_n930":{ + "INDEX.sizeInBytes":1.33928213329E11, + "INDEX.sizeInGB":124.73036845121533, + "coreNode":"core_node944", + "leader":true}}}}, + "N_cs_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4260.629165649414, + "sysprop.pool":"pool-01", + "node":"N_cs_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard10_0_0_replica_n825":{ + "INDEX.sizeInBytes":1.29486149433E11, + "INDEX.sizeInGB":120.59337406698614, + "coreNode":"core_node827", + "leader":true}, + "shard10_0_1_replica_n826":{ + "INDEX.sizeInBytes":1.28038688927E11, + "INDEX.sizeInGB":119.245321421884, + "coreNode":"core_node828", + "leader":true}, + "shard15_1_0_replica_n953":{ + "INDEX.sizeInBytes":1.33515745782E11, + "INDEX.sizeInGB":124.34622811339796, + "coreNode":"core_node955", + "leader":true}, + "shard15_1_1_replica_n954":{ + "INDEX.sizeInBytes":1.30865977458E11, + "INDEX.sizeInGB":121.87843905575573, + "coreNode":"core_node956", + "leader":true}, + "shard6_1_0_replica_n935":{ + "INDEX.sizeInBytes":1.29597529819E11, + "INDEX.sizeInGB":120.69710513483733, + "coreNode":"core_node937", + "leader":true}, + "shard6_1_1_replica_n1704":{ + "INDEX.sizeInBytes":1.31274462707E11, + "INDEX.sizeInGB":122.25887058954686, + "coreNode":"core_node1705", + "leader":true}}}}, + "N_d4_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":797.2159843444824, + "sysprop.pool":"pool-02", + "node":"N_d4_solr", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard2_0_0_replica_n67":{ + "INDEX.sizeInBytes":4.497304707E10, + "INDEX.sizeInGB":41.8844139855355, + "coreNode":"core_node69", + "leader":true}, + "shard2_0_1_replica_n68":{ + "INDEX.sizeInBytes":4.5692831033E10, + "INDEX.sizeInGB":42.554765039123595, + "coreNode":"core_node70", + "leader":true}, + "shard2_1_0_replica_n63":{ + "INDEX.sizeInBytes":4.5935880044E10, + "INDEX.sizeInGB":42.78112206980586, + "coreNode":"core_node65", + "leader":true}, + "shard2_1_1_replica_n64":{ + "INDEX.sizeInBytes":4.5166045429E10, + "INDEX.sizeInGB":42.064157714135945, + "coreNode":"core_node66", + "leader":true}}, + "COLL_0":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":3.401835331E10, + "INDEX.sizeInGB":31.682060388848186, + "coreNode":"core_node3", + "leader":true}}}}, + "N_do_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":407.25314712524414, + "sysprop.pool":"pool-02", + "node":"N_do_solr", + "sysprop.az":"us-east-1c", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard3_0_0_replica_n111":{ + "INDEX.sizeInBytes":4.4957115524E10, + "INDEX.sizeInGB":41.86957657709718, + "coreNode":"core_node112", + "leader":true}, + "shard3_0_1_replica_n113":{ + "INDEX.sizeInBytes":4.577095697E10, + "INDEX.sizeInGB":42.62752548791468, + "coreNode":"core_node114", + "leader":true}, + "shard3_1_0_replica_n115":{ + "INDEX.sizeInBytes":4.3732753925E10, + "INDEX.sizeInGB":40.72930098045617, + "coreNode":"core_node116", + "leader":true}, + "shard3_1_1_replica_n117":{ + "INDEX.sizeInBytes":4.8532509927E10, + "INDEX.sizeInGB":45.19942209776491, + "coreNode":"core_node118", + "leader":true}}, + "COLL_0":{"shard3_replica_n12":{ + "INDEX.sizeInBytes":3.1297025422E10, + "INDEX.sizeInGB":29.147626293823123, + "coreNode":"core_node15", + "leader":true}}}}, + "N_4f_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4264.210151672363, + "sysprop.pool":"pool-01", + "node":"N_4f_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard2_0_1_replica_n914":{ + "INDEX.sizeInBytes":1.31386626219E11, + "INDEX.sizeInGB":122.36333100032061, + "coreNode":"core_node915"}, + "shard2_1_0_replica_n974":{ + "INDEX.sizeInBytes":1.3001251468E11, + "INDEX.sizeInGB":121.0835899040103, + "coreNode":"core_node975", + "leader":true}, + "shard2_1_1_replica_n1684":{ + "INDEX.sizeInBytes":1.2812596905E11, + "INDEX.sizeInGB":119.32660737074912, + "coreNode":"core_node1685", + "leader":true}, + "shard3_0_1_replica_n2":{ + "INDEX.sizeInBytes":1.31838927317E11, + "INDEX.sizeInGB":122.78456922341138, + "coreNode":"core_node546", + "leader":true}, + "shard6_0_0_replica_n1180":{ + "INDEX.sizeInBytes":1.28922958966E11, + "INDEX.sizeInGB":120.06886207126081, + "coreNode":"core_node1182", + "leader":true}, + "shard6_0_1_replica_n1181":{ + "INDEX.sizeInBytes":1.28773562289E11, + "INDEX.sizeInGB":119.92972557339817, + "coreNode":"core_node1189", + "leader":true}}}}, + "N_1h_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4297.329685211182, + "sysprop.pool":"pool-01", + "node":"N_1h_solr", + "sysprop.az":"us-east-1b", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_0_0_replica_n1696":{ + "INDEX.sizeInBytes":1.29369271388E11, + "INDEX.sizeInGB":120.48452290520072, + "coreNode":"core_node1697"}, + "shard12_0_1_replica_n1760":{ + "INDEX.sizeInBytes":1.30342308934E11, + "INDEX.sizeInGB":121.39073473773897, + "coreNode":"core_node1761"}, + "shard1_0_0_replica_n1728":{ + "INDEX.sizeInBytes":5.7176945428E10, + "INDEX.sizeInGB":53.25018002465367, + "coreNode":"core_node1729"}, + "shard3_0_1_replica_n508":{ + "INDEX.sizeInBytes":1.31866901019E11, + "INDEX.sizeInGB":122.81062176357955, + "coreNode":"core_node510"}, + "shard7_1_0_replica_n1144":{ + "INDEX.sizeInBytes":1.2949609012E11, + "INDEX.sizeInGB":120.60263205319643, + "coreNode":"core_node1145"}, + "shard7_1_1_replica_n1700":{ + "INDEX.sizeInBytes":1.28489170345E11, + "INDEX.sizeInGB":119.66486493591219, + "coreNode":"core_node1701"}}}}, + "N_7e_solr":{ + "isLive":true, + "cores":13.0, + "freedisk":873.6022491455078, + "sysprop.pool":"pool-03", + "node":"N_7e_solr", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_6":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":1.6446420654E10, + "INDEX.sizeInGB":15.316922826692462, + "coreNode":"core_node3"}}, + "COLL_5":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":5.854396964E9, + "INDEX.sizeInGB":5.452332053333521, + "coreNode":"core_node2", + "leader":true}}, + "COLL_l":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node3"}}, + "COLL_x":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":3.18270873E8, + "INDEX.sizeInGB":0.296412848867476, + "coreNode":"core_node3"}}, + "COLL_1b":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node3"}}, + "COLL_1r":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":4.12015174E8, + "INDEX.sizeInGB":0.38371903263032436, + "coreNode":"core_node3"}}, + "COLL_8":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":356048.0, + "INDEX.sizeInGB":3.315955400466919E-4, + "coreNode":"core_node3"}}, + "COLL_q":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":4.9242789E8, + "INDEX.sizeInGB":0.45860921032726765, + "coreNode":"core_node3"}}, + "COLL_4":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":2.58881858E8, + "INDEX.sizeInGB":0.2411025185137987, + "coreNode":"core_node3"}}, + "COLL_1x":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":4248411.0, + "INDEX.sizeInGB":0.00395664107054472, + "coreNode":"core_node3"}}, + "COLL_1t":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":8.5774407615E10, + "INDEX.sizeInGB":79.8836421361193, + "coreNode":"core_node3"}}, + "COLL_2k":{"shard1_replica_n1":{ + "INDEX.sizeInBytes":135.0, + "INDEX.sizeInGB":1.257285475730896E-7, + "coreNode":"core_node3"}}, + "COLL_22":{"shard1_replica_n4":{ + "INDEX.sizeInBytes":2.4348956483E10, + "INDEX.sizeInGB":22.676732840947807, + "coreNode":"core_node6"}}}}, + "N_b9_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":801.2417984008789, + "sysprop.pool":"pool-02", + "node":"N_b9_solr", + "sysprop.az":"us-east-1b", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard1_0_0_replica_n87":{ + "INDEX.sizeInBytes":4.5100613575E10, + "INDEX.sizeInGB":42.0032195514068, + "coreNode":"core_node88"}, + "shard1_0_1_replica_n89":{ + "INDEX.sizeInBytes":4.6030616744E10, + "INDEX.sizeInGB":42.869352497160435, + "coreNode":"core_node90"}, + "shard1_1_0_replica_n91":{ + "INDEX.sizeInBytes":4.5724314347E10, + "INDEX.sizeInGB":42.5840861601755, + "coreNode":"core_node92"}, + "shard1_1_1_replica_n93":{ + "INDEX.sizeInBytes":4.574559386E10, + "INDEX.sizeInGB":42.603904251009226, + "coreNode":"core_node94"}}, + "COLL_0":{"shard2_replica_n6":{ + "INDEX.sizeInBytes":2.8865621899E10, + "INDEX.sizeInGB":26.883205304853618, + "coreNode":"core_node9"}}}}, + "N_aw_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4276.759601593018, + "sysprop.pool":"pool-01", + "node":"N_aw_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard12_1_0_replica_n1":{ + "INDEX.sizeInBytes":1.27434400341E11, + "INDEX.sizeInGB":118.68253382015973, + "coreNode":"core_node659", + "leader":true}, + "shard12_1_1_replica_n1":{ + "INDEX.sizeInBytes":1.26701654869E11, + "INDEX.sizeInGB":118.00011142063886, + "coreNode":"core_node661", + "leader":true}, + "shard15_0_1_replica_n1816":{ + "INDEX.sizeInBytes":1.27129784031E11, + "INDEX.sizeInGB":118.39883777406067, + "coreNode":"core_node1817"}, + "shard18_1_1_replica_n1820":{ + "INDEX.sizeInBytes":1.28188518759E11, + "INDEX.sizeInGB":119.38486132677644, + "coreNode":"core_node1821"}, + "shard3_1_0_replica_n2":{ + "INDEX.sizeInBytes":1.28273400877E11, + "INDEX.sizeInGB":119.46391395945102, + "coreNode":"core_node460"}, + "shard4_1_1_replica_n1":{ + "INDEX.sizeInBytes":1.27899653279E11, + "INDEX.sizeInGB":119.11583438422531, + "coreNode":"core_node525"}}}}, + "N_3a7_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4263.317134857178, + "sysprop.pool":"pool-01", + "node":"N_3a7_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard14_0_0_replica_n837":{ + "INDEX.sizeInBytes":1.30330451538E11, + "INDEX.sizeInGB":121.37969167716801, + "coreNode":"core_node839", + "leader":true}, + "shard14_0_1_replica_n838":{ + "INDEX.sizeInBytes":1.31168916273E11, + "INDEX.sizeInGB":122.1605728128925, + "coreNode":"core_node841", + "leader":true}, + "shard14_1_1_replica_n1824":{ + "INDEX.sizeInBytes":1.300425186E11, + "INDEX.sizeInGB":121.11153323203325, + "coreNode":"core_node1825"}, + "shard2_0_0_replica_n1822":{ + "INDEX.sizeInBytes":1.29476268104E11, + "INDEX.sizeInGB":120.58417136222124, + "coreNode":"core_node1823"}, + "shard3_1_1_replica_n2":{ + "INDEX.sizeInBytes":1.2992912768E11, + "INDEX.sizeInGB":121.00592970848083, + "coreNode":"core_node462"}, + "shard7_0_0_replica_n2":{ + "INDEX.sizeInBytes":1.29074533898E11, + "INDEX.sizeInGB":120.21002722717822, + "coreNode":"core_node775", + "leader":true}}}}, + "N_303_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4111.4668045043945, + "sysprop.pool":"pool-01", + "node":"N_303_solr", + "sysprop.az":"us-east-1c", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard16_0_0_replica_n1784":{ + "INDEX.sizeInBytes":1.26747476604E11, + "INDEX.sizeInGB":118.04278623685241, + "coreNode":"core_node1785"}, + "shard16_0_1_replica_n986":{ + "INDEX.sizeInBytes":1.30738903625E11, + "INDEX.sizeInGB":121.76009232643992, + "coreNode":"core_node987"}, + "shard3_0_0_replica_n2":{ + "INDEX.sizeInBytes":1.29792212268E11, + "INDEX.sizeInGB":120.87841729447246, + "coreNode":"core_node544", + "leader":true}, + "shard4_0_1_replica_n1772":{ + "INDEX.sizeInBytes":1.28126128215E11, + "INDEX.sizeInGB":119.3267556047067, + "coreNode":"core_node1773"}, + "shard9_1_0_replica_n1150":{ + "INDEX.sizeInBytes":1.31117387108E11, + "INDEX.sizeInGB":122.11258253827691, + "coreNode":"core_node1151"}, + "shard9_1_1_replica_n1162":{ + "INDEX.sizeInBytes":1.36568824379E11, + "INDEX.sizeInGB":127.18962913285941, + "coreNode":"core_node1163"}}}}, + "N_3to_solr":{ + "isLive":true, + "cores":5.0, + "freedisk":794.5433731079102, + "sysprop.pool":"pool-02", + "node":"N_3to_solr", + "sysprop.az":"us-east-1a", + "totaldisk":999.51171875, + "withCollection":null, + "replicas":{ + "COLL_1":{ + "shard1_0_0_replica_n79":{ + "INDEX.sizeInBytes":4.644843302E10, + "INDEX.sizeInGB":43.258474227041006, + "coreNode":"core_node80", + "leader":true}, + "shard1_0_1_replica_n81":{ + "INDEX.sizeInBytes":4.4936912617E10, + "INDEX.sizeInGB":41.85076115373522, + "coreNode":"core_node82", + "leader":true}, + "shard1_1_0_replica_n83":{ + "INDEX.sizeInBytes":4.3892348528E10, + "INDEX.sizeInGB":40.87793503701687, + "coreNode":"core_node84", + "leader":true}, + "shard1_1_1_replica_n85":{ + "INDEX.sizeInBytes":5.1015133973E10, + "INDEX.sizeInGB":47.511545916087925, + "coreNode":"core_node86", + "leader":true}}, + "COLL_0":{"shard2_replica_n8":{ + "INDEX.sizeInBytes":3.0722710385E10, + "INDEX.sizeInGB":28.6127537349239, + "coreNode":"core_node11", + "leader":true}}}}, + "N_65p_solr":{ + "isLive":true, + "cores":6.0, + "freedisk":4260.997627258301, + "sysprop.pool":"pool-01", + "node":"N_65p_solr", + "sysprop.az":"us-east-1a", + "totaldisk":4998.009765625, + "withCollection":null, + "replicas":{"COLL_2":{ + "shard10_1_0_replica_n1796":{ + "INDEX.sizeInBytes":1.27583656591E11, + "INDEX.sizeInGB":118.82153953518718, + "coreNode":"core_node1797"}, + "shard15_1_0_replica_n1172":{ + "INDEX.sizeInBytes":1.33316507698E11, + "INDEX.sizeInGB":124.16067318804562, + "coreNode":"core_node1173"}, + "shard15_1_1_replica_n1746":{ + "INDEX.sizeInBytes":1.30883359905E11, + "INDEX.sizeInGB":121.89462772104889, + "coreNode":"core_node1747"}, + "shard3_0_0_replica_n1":{ + "INDEX.sizeInBytes":1.29871412511E11, + "INDEX.sizeInGB":120.95217826869339, + "coreNode":"core_node543"}, + "shard3_0_1_replica_n1":{ + "INDEX.sizeInBytes":1.31838835644E11, + "INDEX.sizeInGB":122.784483846277, + "coreNode":"core_node545"}, + "shard7_0_0_replica_n1":{ + "INDEX.sizeInBytes":1.29027793373E11, + "INDEX.sizeInGB":120.16649672109634, + "coreNode":"core_node774"}}}}}, + "collectionStats":{ + "COLL_2":{ + "activeShards":72, + "inactiveShards":0, + "rf":2, + "maxShardsPerNode":1, + "maxActualShardsPerNode":6, + "minActualShardsPerNode":6, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":216, + "numNodes":36, + "maxCoresPerNode":6, + "minCoresPerNode":6, + "avgShardSize":119.19235682340029, + "maxShardSize":130.30958399828523, + "minShardSize":53.25648116040975}, + "COLL_1":{ + "activeShards":12, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":4, + "minActualShardsPerNode":4, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":36, + "numNodes":9, + "maxCoresPerNode":4, + "minCoresPerNode":4, + "avgShardSize":42.76741669047624, + "maxShardSize":47.511545916087925, + "minShardSize":40.72930098045617}, + "COLL_0":{ + "activeShards":3, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":9, + "numNodes":9, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":29.814146805865068, + "maxShardSize":31.682060388848186, + "minShardSize":28.6127537349239}, + "COLL_6":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":41.83655313309282, + "maxShardSize":41.83655313309282, + "minShardSize":41.83655313309282}, + "COLL_5":{ + "activeShards":1, + "inactiveShards":0, + "rf":1, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":1, + "numNodes":1, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":5.452332053333521, + "maxShardSize":5.452332053333521, + "minShardSize":5.452332053333521}, + "COLL_l":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":1.257285475730896E-7, + "maxShardSize":1.257285475730896E-7, + "minShardSize":1.257285475730896E-7}, + "COLL_x":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":0.2880448754876852, + "maxShardSize":0.2880448754876852, + "minShardSize":0.2880448754876852}, + "COLL_1b":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":1.257285475730896E-7, + "maxShardSize":1.257285475730896E-7, + "minShardSize":1.257285475730896E-7}, + "COLL_1r":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":0.39663587138056755, + "maxShardSize":0.39663587138056755, + "minShardSize":0.39663587138056755}, + "COLL_8":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":3.718072548508644E-4, + "maxShardSize":3.718072548508644E-4, + "minShardSize":3.718072548508644E-4}, + "COLL_q":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":0.45860921032726765, + "maxShardSize":0.45860921032726765, + "minShardSize":0.45860921032726765}, + "COLL_4":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":0.24102374073117971, + "maxShardSize":0.24102374073117971, + "minShardSize":0.24102374073117971}, + "COLL_1x":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":0.003971998579800129, + "maxShardSize":0.003971998579800129, + "minShardSize":0.003971998579800129}, + "COLL_1t":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":81.47750116791576, + "maxShardSize":81.47750116791576, + "minShardSize":81.47750116791576}, + "COLL_2k":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":1.257285475730896E-7, + "maxShardSize":1.257285475730896E-7, + "minShardSize":1.257285475730896E-7}, + "COLL_22":{ + "activeShards":1, + "inactiveShards":0, + "rf":3, + "maxShardsPerNode":1, + "maxActualShardsPerNode":1, + "minActualShardsPerNode":1, + "maxShardReplicasPerNode":1, + "minShardReplicasPerNode":1, + "numCores":3, + "numNodes":3, + "maxCoresPerNode":1, + "minCoresPerNode":1, + "avgShardSize":22.679232054390013, + "maxShardSize":22.679232054390013, + "minShardSize":22.679232054390013}}} \ No newline at end of file diff --git a/solr/core/src/test/org/apache/solr/cloud/autoscaling/sim/TestSnapshotCloudManager.java b/solr/core/src/test/org/apache/solr/cloud/autoscaling/sim/TestSnapshotCloudManager.java index 411d107111a..85fdb31e470 100644 --- a/solr/core/src/test/org/apache/solr/cloud/autoscaling/sim/TestSnapshotCloudManager.java +++ b/solr/core/src/test/org/apache/solr/cloud/autoscaling/sim/TestSnapshotCloudManager.java @@ -17,11 +17,14 @@ package org.apache.solr.cloud.autoscaling.sim; import java.io.File; +import java.io.FileInputStream; import java.lang.invoke.MethodHandles; +import java.nio.charset.Charset; import java.nio.file.Path; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; +import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; @@ -31,10 +34,14 @@ import java.util.function.Predicate; import java.util.regex.Pattern; import java.util.stream.Collectors; +import org.apache.commons.io.IOUtils; import org.apache.solr.client.solrj.cloud.DistribStateManager; import org.apache.solr.client.solrj.cloud.NodeStateProvider; import org.apache.solr.client.solrj.cloud.SolrCloudManager; +import org.apache.solr.client.solrj.cloud.autoscaling.PolicyHelper; import org.apache.solr.client.solrj.cloud.autoscaling.ReplicaInfo; +import org.apache.solr.client.solrj.cloud.autoscaling.Suggester; +import org.apache.solr.client.solrj.cloud.autoscaling.Suggestion; import org.apache.solr.client.solrj.cloud.autoscaling.VersionedData; import org.apache.solr.client.solrj.request.CollectionAdminRequest; import org.apache.solr.cloud.SolrCloudTestCase; @@ -66,6 +73,10 @@ public class TestSnapshotCloudManager extends SolrCloudTestCase { .configure(); CollectionAdminRequest.createCollection(CollectionAdminParams.SYSTEM_COLL, null, 1, 2, 0, 1) .process(cluster.getSolrClient()); + CollectionAdminRequest.createCollection("coll1", null, 1, 1) + .process(cluster.getSolrClient()); + CollectionAdminRequest.createCollection("coll10", null, 1, 1) + .process(cluster.getSolrClient()); realManager = cluster.getJettySolrRunner(cluster.getJettySolrRunners().size() - 1).getCoreContainer() .getZkController().getSolrCloudManager(); } @@ -73,7 +84,7 @@ public class TestSnapshotCloudManager extends SolrCloudTestCase { @Test public void testSnapshots() throws Exception { SnapshotCloudManager snapshotCloudManager = new SnapshotCloudManager(realManager, null); - Map snapshot = snapshotCloudManager.getSnapshot(true); + Map snapshot = snapshotCloudManager.getSnapshot(true, false); SnapshotCloudManager snapshotCloudManager1 = new SnapshotCloudManager(snapshot); SimSolrCloudTestCase.assertClusterStateEquals(realManager.getClusterStateProvider().getClusterState(), snapshotCloudManager.getClusterStateProvider().getClusterState()); SimSolrCloudTestCase.assertClusterStateEquals(realManager.getClusterStateProvider().getClusterState(), snapshotCloudManager1.getClusterStateProvider().getClusterState()); @@ -88,19 +99,52 @@ public class TestSnapshotCloudManager extends SolrCloudTestCase { Path tmpPath = createTempDir(); File tmpDir = tmpPath.toFile(); SnapshotCloudManager snapshotCloudManager = new SnapshotCloudManager(realManager, null); - snapshotCloudManager.saveSnapshot(tmpDir, true); + snapshotCloudManager.saveSnapshot(tmpDir, true, false); SnapshotCloudManager snapshotCloudManager1 = SnapshotCloudManager.readSnapshot(tmpDir); SimSolrCloudTestCase.assertClusterStateEquals(snapshotCloudManager.getClusterStateProvider().getClusterState(), snapshotCloudManager1.getClusterStateProvider().getClusterState()); assertNodeStateProvider(snapshotCloudManager, snapshotCloudManager1); assertDistribStateManager(snapshotCloudManager.getDistribStateManager(), snapshotCloudManager1.getDistribStateManager()); } + @Test + public void testRedaction() throws Exception { + Path tmpPath = createTempDir(); + File tmpDir = tmpPath.toFile(); + SnapshotCloudManager snapshotCloudManager = new SnapshotCloudManager(realManager, null); + Set redacted = new HashSet<>(realManager.getClusterStateProvider().getLiveNodes()); + redacted.addAll(realManager.getClusterStateProvider().getClusterState().getCollectionStates().keySet()); + snapshotCloudManager.saveSnapshot(tmpDir, true, true); + for (String key : SnapshotCloudManager.REQUIRED_KEYS) { + File src = new File(tmpDir, key + ".json"); + assertTrue(src.toString() + " doesn't exist", src.exists()); + String data = IOUtils.toString(new FileInputStream(src), Charset.forName("UTF-8")); + assertFalse("empty data in " + src, data.trim().isEmpty()); + for (String redactedName : redacted) { + assertFalse("redacted name " + redactedName + " found in " + src, data.contains(redactedName)); + } + } + } + + @Test + public void testComplexSnapshot() throws Exception { + File snapshotDir = new File(TEST_HOME(), "simSnapshot"); + SnapshotCloudManager snapshotCloudManager = SnapshotCloudManager.readSnapshot(snapshotDir); + assertEquals(48, snapshotCloudManager.getClusterStateProvider().getLiveNodes().size()); + assertEquals(16, snapshotCloudManager.getClusterStateProvider().getClusterState().getCollectionStates().size()); + try (SimCloudManager simCloudManager = SimCloudManager.createCluster(snapshotCloudManager, null, TimeSource.get("simTime:50"))) { + List suggestions = PolicyHelper.getSuggestions(simCloudManager.getDistribStateManager().getAutoScalingConfig(), simCloudManager); + assertEquals(1, suggestions.size()); + Suggester.SuggestionInfo suggestion = suggestions.get(0); + assertEquals(Suggestion.Type.improvement.toString(), suggestion.toMap(new HashMap<>()).get("type").toString()); + } + } + @Test public void testSimulatorFromSnapshot() throws Exception { Path tmpPath = createTempDir(); File tmpDir = tmpPath.toFile(); SnapshotCloudManager snapshotCloudManager = new SnapshotCloudManager(realManager, null); - snapshotCloudManager.saveSnapshot(tmpDir, true); + snapshotCloudManager.saveSnapshot(tmpDir, true, false); SnapshotCloudManager snapshotCloudManager1 = SnapshotCloudManager.readSnapshot(tmpDir); try (SimCloudManager simCloudManager = SimCloudManager.createCluster(snapshotCloudManager1, null, TimeSource.get("simTime:50"))) { SimSolrCloudTestCase.assertClusterStateEquals(snapshotCloudManager.getClusterStateProvider().getClusterState(), simCloudManager.getClusterStateProvider().getClusterState()); diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/cloud/autoscaling/ReplicaInfo.java b/solr/solrj/src/java/org/apache/solr/client/solrj/cloud/autoscaling/ReplicaInfo.java index 19bd16188ea..f9a83de12aa 100644 --- a/solr/solrj/src/java/org/apache/solr/client/solrj/cloud/autoscaling/ReplicaInfo.java +++ b/solr/solrj/src/java/org/apache/solr/client/solrj/cloud/autoscaling/ReplicaInfo.java @@ -88,7 +88,7 @@ public class ReplicaInfo implements MapWriter { } public Object clone() { - return new ReplicaInfo(name, core, collection, shard, type, node, variables); + return new ReplicaInfo(name, core, collection, shard, type, node, new HashMap<>(variables)); } @Override