Class SolrClientCloudManager
- java.lang.Object
-
- org.apache.solr.client.solrj.impl.SolrClientCloudManager
-
- All Implemented Interfaces:
Closeable,AutoCloseable,SolrCloudManager,SolrCloseable
public class SolrClientCloudManager extends Object implements SolrCloudManager
Class that implementsSolrCloudManagerusing a SolrClient
-
-
Field Summary
Fields Modifier and Type Field Description protected CloudLegacySolrClientsolrClient
-
Constructor Summary
Constructors Constructor Description SolrClientCloudManager(DistributedQueueFactory queueFactory, CloudLegacySolrClient solrClient)SolrClientCloudManager(DistributedQueueFactory queueFactory, CloudLegacySolrClient solrClient, ObjectCache objectCache)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()ClusterStateProvidergetClusterStateProvider()DistribStateManagergetDistribStateManager()DistributedQueueFactorygetDistributedQueueFactory()NodeStateProvidergetNodeStateProvider()ObjectCachegetObjectCache()TimeSourcegetTimeSource()SolrZkClientgetZkClient()byte[]httpRequest(String url, SolrRequest.METHOD method, Map<String,String> headers, String payload, int timeout, boolean followRedirects)booleanisClosed()<T extends SolrResponse>
Trequest(SolrRequest<T> req)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.client.solrj.cloud.SolrCloudManager
getClusterState
-
-
-
-
Field Detail
-
solrClient
protected final CloudLegacySolrClient solrClient
-
-
Constructor Detail
-
SolrClientCloudManager
public SolrClientCloudManager(DistributedQueueFactory queueFactory, CloudLegacySolrClient solrClient)
-
SolrClientCloudManager
public SolrClientCloudManager(DistributedQueueFactory queueFactory, CloudLegacySolrClient solrClient, ObjectCache objectCache)
-
-
Method Detail
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
isClosed
public boolean isClosed()
- Specified by:
isClosedin interfaceSolrCloseable
-
getObjectCache
public ObjectCache getObjectCache()
- Specified by:
getObjectCachein interfaceSolrCloudManager
-
getTimeSource
public TimeSource getTimeSource()
- Specified by:
getTimeSourcein interfaceSolrCloudManager
-
getClusterStateProvider
public ClusterStateProvider getClusterStateProvider()
- Specified by:
getClusterStateProviderin interfaceSolrCloudManager
-
getNodeStateProvider
public NodeStateProvider getNodeStateProvider()
- Specified by:
getNodeStateProviderin interfaceSolrCloudManager
-
getDistribStateManager
public DistribStateManager getDistribStateManager()
- Specified by:
getDistribStateManagerin interfaceSolrCloudManager
-
request
public <T extends SolrResponse> T request(SolrRequest<T> req) throws IOException
- Specified by:
requestin interfaceSolrCloudManager- Throws:
IOException
-
httpRequest
public byte[] httpRequest(String url, SolrRequest.METHOD method, Map<String,String> headers, String payload, int timeout, boolean followRedirects) throws IOException
- Specified by:
httpRequestin interfaceSolrCloudManager- Throws:
IOException
-
getZkClient
public SolrZkClient getZkClient()
-
getDistributedQueueFactory
public DistributedQueueFactory getDistributedQueueFactory()
- Specified by:
getDistributedQueueFactoryin interfaceSolrCloudManager
-
-