Solr Cloud: No live SolrServers available

2015-05-19 Thread Chetan Vora
Hi all We have a cluster of standalone Solr cores (Solr 4.3) for which we had built some custom plugins. I'm now trying to prototype converting the cluster to a Solr Cloud cluster. This is how I am trying to deploy the cores (in 4.7.2). 1. Start solr with zookeeper embedded. java -Dzk

Re: Solr Cloud: No live SolrServers available

2015-05-20 Thread Chetan Vora
27;s true, the Solr log (or the screen if you're just running > from the command line) will show big ugly stack traces. > > If nothing shows up in the logs then I'm puzzled, but what you > describe is consistent with what I've seen in terms of having bad > configs and tr

Re: Solr Cloud: No live SolrServers available

2015-05-20 Thread Chetan Vora
he.solr.cloud.DistributedQueue$LatchChildWatcher; LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged INFO - 2015-05-20 10:36:25.086; org.apache.solr.cloud.DistributedQueue$LatchChildWatcher; LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeC

SolrQueryRequest in SolrCloud vs Standalone Solr

2015-07-08 Thread Chetan Vora
Hi all We have a cluster of standalone Solr cores (Solr 4.3) for which we had built some custom requesthandlers and filters which do query processing using the Terms API. I'm now trying to port the custom functionality to work in the Solr Cloud world. Old configuration had standalone cores with

IndexSearcher.search(query, collect)

2015-07-15 Thread Chetan Vora
Hi all I asked a related question before but couldn't get any response (see SolrQueryRequest in SolrCloud vs Standalone Solr), asking it differently here. Is there a way to invoke IndexSearcher.search(Query, Collector) over a SolrCloud collection so that in invokes the search/collect implicitly

Re: IndexSearcher.search(query, collect)

2015-07-15 Thread Chetan Vora
system where you wouldn't want to transmit all the top N from > every > shard. > > HTH, > Erick > > > On Wed, Jul 15, 2015 at 8:46 AM, Chetan Vora wrote: > > Hi all > > > > I asked a related question before but couldn't get any response (see >

Re: IndexSearcher.search(query, collect)

2015-07-15 Thread Chetan Vora
m> wrote: > > > On Wed, Jul 15, 2015 at 10:46 AM, Chetan Vora > wrote: > >> Hi all >> >> I asked a related question before but couldn't get any response (see >> SolrQueryRequest in SolrCloud vs Standalone Solr), asking it differently >> here. &g

How to use NumericTermsRangeEnum from NumericRangeQuery

2013-09-26 Thread Chetan Vora
Hi all I was trying to use the above enum to do some range search on dates... this enum is returned by NumericRangeQuery.getTermsEnum() but I realized that this is a protected method of the class and since this is a final class, I can't see how I can use it. Maybe I'm missing something ? Would ap