Re: measuring query performance & qps per node

2016-04-27 Thread Erick Erickson
In SolrCloud you can collect stats on pivot facets, see: https://issues.apache.org/jira/browse/SOLR-6351 There are more buckets to count into and in SolrCloud you have extra work to reconcile the partial results from different shards. Best, Erick On Mon, Apr 25, 2016 at 8:50 PM, Jay Potharaj

Re: measuring query performance & qps per node

2016-04-25 Thread Jay Potharaju
Thanks for the response Erick. I knew that it would depend on the number of factors like you mentioned.I just wanted to know whether a good combination of queries, facets & filters should be a good estimate of how solr might behave. what did you mean by "Add stats to pivots in Cloud mode." Thank

Re: measuring query performance & qps per node

2016-04-25 Thread Erick Erickson
Impossible to answer. For instance, a facet query can be very heavy-duty. Add stats to pivots in Cloud mode. As for using a bunch of fq clauses, It Depends (tm). If your expected usage pattern is all queries like 'q=*:*&fq=clause1&fq=clause2" then it's fine. It totally falls down if, for instance

measuring query performance & qps per node

2016-04-25 Thread Jay Potharaju
Hi, I am trying to measure how will are queries performing ie how long are they taking. In order to measure query speed I am using solrmeter with 50k unique filter queries. And then checking if any of the queries are slower than 50ms. Is this a good approach to measure query performance? Are there