NIO connector and maxIdleTime

2014-11-19 Thread sachinpkale
We are using SOLR 4.10.1 cloud setup and having following configuration in
etc/jetty.xml


  
  


5
16
3000
false
8443
32768
  
  


In Jetty documentation, it is mentioned that maxIdleTime is "Set the maximum
Idle time for a connection, which roughly translates to the
Socket.setSoTimeout(int) call, although with NIO implementations other
mechanisms may be used to implement the timeout." 
Does it mean that maxIdleTime is not necessarily socket timeout with NIO
connector? If not, what is the other mechanism to set socket timeout?



--
View this message in context: 
http://lucene.472066.n3.nabble.com/NIO-connector-and-maxIdleTime-tp4170040.html
Sent from the Solr - User mailing list archive at Nabble.com.


Frequent recovery of nodes in SolrCloud

2014-10-16 Thread sachinpkale
Hi,

Recently we have shifted to SolrCloud (4.10.1) from traditional Master-Slave
configuration. We have only one collection and it has only only one shard.
Cloud Cluster contains total 12 nodes (on 8 machines. On 4 machiens, we have
two instances running on each) out of which one is leader. 

Whenever I see the cluster status using http://:/solr/#/~cloud, it
shows at least one (sometimes, it is 2-3) node status as recovering. We are
using HAProxy load balancer and there also many times, it is showing the
nodes are recovering. This is happening for all nodes in the cluster. 

What would be the problem here? How do I check this in logs?



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Frequent-recovery-of-nodes-in-SolrCloud-tp4164541.html
Sent from the Solr - User mailing list archive at Nabble.com.


LBHttpSolrServer is creating new instance of HttpSolrServer in request(Req req) method

2014-10-15 Thread sachinpkale
Following is the line from the request(Req req) method of LBHttpSolrServer
class:

  *HttpSolrServer server = makeServer(serverStr);*

Won't it create new instance of HttpSolrServer for every request?





--
View this message in context: 
http://lucene.472066.n3.nabble.com/LBHttpSolrServer-is-creating-new-instance-of-HttpSolrServer-in-request-Req-req-method-tp4164359.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Manual leader election in SolrCloud

2014-10-13 Thread sachinpkale
Thanks for the info. I will wait for the next release then. Will it come with
4.10.2?



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Manual-leader-election-in-SolrCloud-tp4164047p4164115.html
Sent from the Solr - User mailing list archive at Nabble.com.


SOLR: getting documents in the given order

2014-06-03 Thread sachinpkale
I have a following field in SOLR schema.




If I issue following query:

id:(1234 OR 2345 OR 3456)

SOLR does not return the documents in that order. It is giving document with
id 3456, then with 1234 and then with 2345.

How do I get it in the same order as in the query?



--
View this message in context: 
http://lucene.472066.n3.nabble.com/SOLR-getting-documents-in-the-given-order-tp4139722.html
Sent from the Solr - User mailing list archive at Nabble.com.