Hi We have the following solr http server
<bean class="org.apache.solr.client.solrj.impl.CommonsHttpSolrServer" id="solrserver" > <constructor-arg value="urlToSlaveLoadBalancer" /> <property name="soTimeout" value="1000" /> <property name="connectionTimeout" value="1000" /> <property name="defaultMaxConnectionsPerHost" value="5" /> <property name="maxTotalConnections" value="20" /> <property name="allowCompression" value="true" /> </bean> The issue we face is the f5 balancer is returning a cookie which the client is hanging onto. resulting in the same slave being hit for all requests. one obvious solution is to config the load balancer to be non sticky however politically a "non-standard" load balancer is timescale suicide. (It is an out sourced corporate thing) I'm not keen to use the LB http solr server as i don't want this to be a concern of the software and have a list of servers etc. (although as a stop gap may well have to) My question is can I configure the solr server to ignore client state ? We are on solr 3.4 Thanks in advance lee c