Re: Question on Solr Distributed Search

2009-04-10 Thread vivek sar
yes - it's all new indexes. I can search them individually, but adding "shards" throws "Connection Reset" error. Is there any way I can debug this or any other pointers? -vivek On Fri, Apr 10, 2009 at 4:49 AM, Shalin Shekhar Mangar wrote: > On Fri, Apr 10, 2009 at 7:50 AM, vivek sar wrote: > >>

Re: Question on Solr Distributed Search

2009-04-10 Thread Shalin Shekhar Mangar
On Fri, Apr 10, 2009 at 7:50 AM, vivek sar wrote: > Just an update. I changed the schema to store the unique id field, but > I still get the connection reset exception. I did notice that if there > is no data in the core then it returns the 0 result (no exception), > but if there is data and you

Re: Question on Solr Distributed Search

2009-04-09 Thread vivek sar
Just an update. I changed the schema to store the unique id field, but I still get the connection reset exception. I did notice that if there is no data in the core then it returns the 0 result (no exception), but if there is data and you search using "shards" parameter I get the connection reset e

Re: Question on Solr Distributed Search

2009-04-09 Thread vivek sar
I think the reason behind the "connection reset" is. Looking at the code it points to QueryComponent.mergeIds() resultIds.put(shardDoc.id.toString(), shardDoc); looks like the doc unique id is returning null. I'm not sure how is it possible as its a required field. Right my unique id is not store

Question on Solr Distributed Search

2009-04-09 Thread vivek sar
Hi, I've another thread on multi-core distributed search, but just wanted to put a simple question here on distributed search to get some response. I've a search query, http://etsx19.co.com:8080/solr/20090409_9/select?q=usa - returns with 10 result now if I add "shards" parameter to it,