Re: Multiple calls across the distributed nodes for a query

2016-06-15 Thread Raveendra Yerraguntla
Thank you Jeff . Let me try out how much of improvement I get out of single pass param Sent from my iPhone > On Jun 15, 2016, at 1:59 PM, Jeff Wartes wrote: > > Any distributed query falls into the two-phase process. Actually, I think > some components may require a

Re: Multiple calls across the distributed nodes for a query

2016-06-15 Thread Jeff Wartes
Any distributed query falls into the two-phase process. Actually, I think some components may require a third phase. (faceting?) However, there are also cases where only a single pass is required. A fl=id,score will only be a single pass, for example, since it doesn’t need to get the field

Multiple calls across the distributed nodes for a query

2016-06-15 Thread Raveendra Yerraguntla
I need help in understanding a query in solr cloud. When user issues a query , there are are two phases of query - one with the purpose(from debug info) of GET_TOP_FIELDS and another with GET_FIELDS. This is having an effect on end to end performance of the application. - what triggers (any