public class ClusterState extends Object implements JSONWriter.Writable
ZkStateReader.getClusterState()
.Constructor and Description |
---|
ClusterState(Integer zkClusterStateVersion,
Set<String> liveNodes,
Map<String,Map<String,Slice>> collectionStates)
Use this constr when ClusterState is meant for consumption.
|
ClusterState(Set<String> liveNodes,
Map<String,Map<String,Slice>> collectionStates)
Use this constr when ClusterState is meant for publication.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
Set<String> |
getCollections()
Get collection names.
|
Map<String,Map<String,Slice>> |
getCollectionStates() |
ZkNodeProps |
getLeader(String collection,
String shard)
Get properties of a shard leader for specific collection.
|
Set<String> |
getLiveNodes()
Get names of the currently live nodes.
|
org.apache.solr.common.cloud.ClusterState.RangeInfo |
getRanges(String collection) |
String |
getShard(int hash,
String collection)
Get shard id for hash.
|
String |
getShardId(String coreNodeName)
Get shardId for core.
|
Replica |
getShardProps(String collection,
String coreNodeName)
Get shard properties or null if shard is not found.
|
Slice |
getSlice(String collection,
String slice)
Get the index Slice for collection.
|
Map<String,Slice> |
getSlices(String collection)
Get all slices for collection.
|
Integer |
getZkClusterStateVersion()
The version of clusterstate.json in ZooKeeper.
|
int |
hashCode() |
boolean |
liveNodesContain(String name)
Check if node is alive.
|
static ClusterState |
load(Integer version,
byte[] bytes,
Set<String> liveNodes)
Create ClusterState from json string that is typically stored in zookeeper.
|
static ClusterState |
load(SolrZkClient zkClient,
Set<String> liveNodes)
Create ClusterState by reading the current state from zookeeper.
|
String |
toString() |
void |
write(JSONWriter jsonWriter) |
public ClusterState(Set<String> liveNodes, Map<String,Map<String,Slice>> collectionStates)
public ZkNodeProps getLeader(String collection, String shard)
public Replica getShardProps(String collection, String coreNodeName)
public Map<String,Map<String,Slice>> getCollectionStates()
public String getShardId(String coreNodeName)
coreNodeName
- in the form of nodeName_coreNamepublic boolean liveNodesContain(String name)
public org.apache.solr.common.cloud.ClusterState.RangeInfo getRanges(String collection)
public String getShard(int hash, String collection)
public static ClusterState load(SolrZkClient zkClient, Set<String> liveNodes) throws org.apache.zookeeper.KeeperException, InterruptedException
org.apache.zookeeper.KeeperException
InterruptedException
public static ClusterState load(Integer version, byte[] bytes, Set<String> liveNodes)
load(SolrZkClient, Set)
instead, unless you want to
do something more when getting the data - such as get the stat, set watch, etc.version
- zk version of the clusterstate.json file (bytes)bytes
- clusterstate.json as a byte arrayliveNodes
- list of live nodespublic void write(JSONWriter jsonWriter)
write
in interface JSONWriter.Writable
public Integer getZkClusterStateVersion()
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.