Re: working of Sharded Query in SOLR 3.6

2015-09-09 Thread Upayavira
To be specific, each shard does a query against its own index, scoring each document, and returning n rows. Then, these n results are aggregated, picking the top n scoring docs out of all of those returned from the shards. For faceting and other components, the aggregation is somewhat different.

Re: working of Sharded Query in SOLR 3.6

2015-09-09 Thread abhi Abhishek
Hi, Thanks for the reply Shawn and Mugeesh. I was just trying to understand the working of Distributed Querying in SOLR. Thanks, Abhishek Das On Wed, Sep 9, 2015 at 8:18 PM, Mugeesh Husain wrote: > You are correct for distributed search. > do worry care about join, solr will aggregate result

Re: working of Sharded Query in SOLR 3.6

2015-09-09 Thread Mugeesh Husain
You are correct for distributed search. do worry care about join, solr will aggregate results from all core. share your requirement what you want ? -- View this message in context: http://lucene.472066.n3.nabble.com/working-of-Sharded-Query-in-SOLR-3-6-tp4227952p4227979.html Sent from the Solr

Re: working of Sharded Query in SOLR 3.6

2015-09-09 Thread Shawn Heisey
On 9/9/2015 7:55 AM, abhi Abhishek wrote: > https://server1:8080/solr/core1/select?shards=server1:8080/solr/core1,server2:8070 > /solr/core2,server3:8090/solr/core3&q=*:*&rows=10*&start=0 > > please correct if my understanding of the query processing here is > incorrect! > > server1 acts as the m