Class LBHttpSolrClient
- java.lang.Object
- 
- org.apache.solr.client.solrj.SolrClient
- 
- org.apache.solr.client.solrj.impl.LBHttpSolrClient
 
 
- 
- All Implemented Interfaces:
- Closeable,- Serializable,- AutoCloseable
 
 public class LBHttpSolrClient extends SolrClient LBHttpSolrClient or "LoadBalanced HttpSolrClient" is a load balancing wrapper aroundHttpSolrClient. This is useful when you have multiple Solr servers and the requests need to be Load Balanced among them. Do NOT use this class for indexing in master/slave scenarios since documents must be sent to the correct master; no inter-node routing is done. In SolrCloud (leader/replica) scenarios, it is usually better to useCloudSolrClient, but this class may be used for updates because the server will forward them to the appropriate leader.It offers automatic failover when a server goes down and it detects when the server comes back up. Load balancing is done using a simple round-robin on the list of servers. If a request to a server fails by an IOException due to a connection timeout or read timeout then the host is taken off the list of live servers and moved to a 'dead server list' and the request is resent to the next live server. This process is continued till it tries all the live servers. If at least one server is alive, the request succeeds, and if not it fails. 
 This detects if a dead server comes alive automatically. The check is done in fixed intervals in a dedicated thread. This interval can be set usingSolrClient lbHttpSolrClient = new LBHttpSolrClient("http://host1:8080/solr/", "http://host2:8080/solr", "http://host2:8080/solr"); //or if you wish to pass the HttpClient do as follows httpClient httpClient = new HttpClient(); SolrClient lbHttpSolrClient = new LBHttpSolrClient(httpClient, "http://host1:8080/solr/", "http://host2:8080/solr", "http://host2:8080/solr");setAliveCheckInterval(int), the default is set to one minute.When to use this? 
 This can be used as a software load balancer when you do not wish to setup an external load balancer. Alternatives to this code are to use a dedicated hardware load balancer or using Apache httpd with mod_proxy_balancer as a load balancer. See Load balancing on Wikipedia- Since:
- solr 1.4
- See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classLBHttpSolrClient.BuilderConstructsLBHttpSolrClientinstances from provided configuration.static classLBHttpSolrClient.Reqstatic classLBHttpSolrClient.Rspprotected static classLBHttpSolrClient.ServerWrapper
 - 
Field SummaryFields Modifier and Type Field Description protected Map<String,LBHttpSolrClient.ServerWrapper>zombieServers
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedLBHttpSolrClient(org.apache.http.client.HttpClient httpClient, ResponseParser parser, String... solrServerUrl)Deprecated.useLBHttpSolrClient(Builder)instead, as it is a more extension/subclassing-friendly alternativeprotectedLBHttpSolrClient(HttpSolrClient.Builder httpSolrClientBuilder, org.apache.http.client.HttpClient httpClient, String... solrServerUrl)Deprecated.useLBHttpSolrClient(Builder)instead, as it is a more extension/subclassing-friendly alternativeprotectedLBHttpSolrClient(LBHttpSolrClient.Builder builder)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddQueryParams(String queryOnlyParam)voidaddSolrServer(String server)protected ExceptionaddZombie(HttpSolrClient server, Exception e)voidclose()protected ExceptiondoRequest(HttpSolrClient client, LBHttpSolrClient.Req req, LBHttpSolrClient.Rsp rsp, boolean isNonRetryable, boolean isZombie, String zombieKey)org.apache.http.client.HttpClientgetHttpClient()Return the HttpClient this instance uses.ResponseParsergetParser()Set<String>getQueryParams()RequestWritergetRequestWriter()protected HttpSolrClientmakeSolrClient(String server)static Stringnormalize(String server)StringremoveSolrServer(String server)LBHttpSolrClient.Rsprequest(LBHttpSolrClient.Req req)Tries to query a live server from the list provided in Req.NamedList<Object>request(SolrRequest request, String collection)Tries to query a live server.NamedList<Object>request(SolrRequest request, String collection, Integer numServersToTry)voidsetAliveCheckInterval(int interval)LBHttpSolrServer keeps pinging the dead servers at fixed interval to find if it is alive.voidsetConnectionTimeout(int timeout)Deprecated.since 7.0 UseLBHttpSolrClient.Buildermethods instead.voidsetParser(ResponseParser parser)Changes theResponseParserthat will be used for the internal SolrServer objects.voidsetQueryParams(Set<String> queryParams)Expert Method.voidsetRequestWriter(RequestWriter requestWriter)Changes theRequestWriterthat will be used for the internal SolrServer objects.voidsetSoTimeout(int timeout)Deprecated.since 7.0 UseLBHttpSolrClient.Buildermethods instead.- 
Methods inherited from class org.apache.solr.client.solrj.SolrClientadd, add, add, add, add, add, add, add, add, add, addBean, addBean, addBean, addBean, addBeans, addBeans, addBeans, addBeans, addBeans, addBeans, commit, commit, commit, commit, commit, commit, deleteById, deleteById, deleteById, deleteById, deleteById, deleteById, deleteById, deleteById, deleteByQuery, deleteByQuery, deleteByQuery, deleteByQuery, getBinder, getById, getById, getById, getById, getById, getById, getById, getById, optimize, optimize, optimize, optimize, optimize, optimize, ping, query, query, query, query, queryAndStreamResponse, queryAndStreamResponse, request, rollback, rollback
 
- 
 
- 
- 
- 
Field Detail- 
zombieServersprotected final Map<String,LBHttpSolrClient.ServerWrapper> zombieServers 
 
- 
 - 
Constructor Detail- 
LBHttpSolrClient@Deprecated protected LBHttpSolrClient(HttpSolrClient.Builder httpSolrClientBuilder, org.apache.http.client.HttpClient httpClient, String... solrServerUrl) Deprecated.useLBHttpSolrClient(Builder)instead, as it is a more extension/subclassing-friendly alternativeThe provided httpClient should use a multi-threaded connection manager
 - 
LBHttpSolrClient@Deprecated protected LBHttpSolrClient(org.apache.http.client.HttpClient httpClient, ResponseParser parser, String... solrServerUrl) Deprecated.useLBHttpSolrClient(Builder)instead, as it is a more extension/subclassing-friendly alternativeThe provided httpClient should use a multi-threaded connection manager
 - 
LBHttpSolrClientprotected LBHttpSolrClient(LBHttpSolrClient.Builder builder) 
 
- 
 - 
Method Detail- 
setQueryParamspublic void setQueryParams(Set<String> queryParams) Expert Method.- Parameters:
- queryParams- set of param keys to only send via the query string
 
 - 
addQueryParamspublic void addQueryParams(String queryOnlyParam) 
 - 
makeSolrClientprotected HttpSolrClient makeSolrClient(String server) 
 - 
requestpublic LBHttpSolrClient.Rsp request(LBHttpSolrClient.Req req) throws SolrServerException, IOException Tries to query a live server from the list provided in Req. Servers in the dead pool are skipped. If a request fails due to an IOException, the server is moved to the dead pool for a certain period of time, or until a test request on that server succeeds. Servers are queried in the exact order given (except servers currently in the dead pool are skipped). If no live servers from the provided list remain to be tried, a number of previously skipped dead servers will be tried. Req.getNumDeadServersToTry() controls how many dead servers will be tried. If no live servers are found a SolrServerException is thrown.- Parameters:
- req- contains both the request as well as the list of servers to query
- Returns:
- the result of the request
- Throws:
- IOException- If there is a low-level I/O error.
- SolrServerException
 
 - 
addZombieprotected Exception addZombie(HttpSolrClient server, Exception e) 
 - 
doRequestprotected Exception doRequest(HttpSolrClient client, LBHttpSolrClient.Req req, LBHttpSolrClient.Rsp rsp, boolean isNonRetryable, boolean isZombie, String zombieKey) throws SolrServerException, IOException - Throws:
- SolrServerException
- IOException
 
 - 
addSolrServerpublic void addSolrServer(String server) throws MalformedURLException - Throws:
- MalformedURLException
 
 - 
setConnectionTimeout@Deprecated public void setConnectionTimeout(int timeout) Deprecated.since 7.0 UseLBHttpSolrClient.Buildermethods instead.
 - 
setSoTimeout@Deprecated public void setSoTimeout(int timeout) Deprecated.since 7.0 UseLBHttpSolrClient.Buildermethods instead.set soTimeout (read timeout) on the underlying HttpConnectionManager. This is desirable for queries, but probably not for indexing.
 - 
closepublic void close() 
 - 
requestpublic NamedList<Object> request(SolrRequest request, String collection) throws SolrServerException, IOException Tries to query a live server. A SolrServerException is thrown if all servers are dead. If the request failed due to IOException then the live server is moved to dead pool and the request is retried on another live server. After live servers are exhausted, any servers previously marked as dead will be tried before failing the request.- Specified by:
- requestin class- SolrClient
- Parameters:
- request- the SolrRequest.
- collection- the collection to execute the request against
- Returns:
- response
- Throws:
- IOException- If there is a low-level I/O error.
- SolrServerException- if there is an error on the server
 
 - 
requestpublic NamedList<Object> request(SolrRequest request, String collection, Integer numServersToTry) throws SolrServerException, IOException - Throws:
- SolrServerException
- IOException
 
 - 
setAliveCheckIntervalpublic void setAliveCheckInterval(int interval) LBHttpSolrServer keeps pinging the dead servers at fixed interval to find if it is alive. Use this to set that interval- Parameters:
- interval- time in milliseconds
 
 - 
getHttpClientpublic org.apache.http.client.HttpClient getHttpClient() Return the HttpClient this instance uses.
 - 
getParserpublic ResponseParser getParser() 
 - 
setParserpublic void setParser(ResponseParser parser) Changes theResponseParserthat will be used for the internal SolrServer objects.- Parameters:
- parser- Default Response Parser chosen to parse the response if the parser were not specified as part of the request.
- See Also:
- SolrRequest.getResponseParser()
 
 - 
setRequestWriterpublic void setRequestWriter(RequestWriter requestWriter) Changes theRequestWriterthat will be used for the internal SolrServer objects.- Parameters:
- requestWriter- Default RequestWriter, used to encode requests sent to the server.
 
 - 
getRequestWriterpublic RequestWriter getRequestWriter() 
 
- 
 
-