Re: Parallelizing post filter for better performance

2017-03-17 Thread Joel Bernstein
You'll probably get better results by trying to get more performance out of your single threaded postfilter. If you can post the code in you collect() method you may get some ideas on how to improve the performance. Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Mar 17, 2017 at 2:13 PM, Sun

Re: Parallelizing post filter for better performance

2017-03-17 Thread Mikhail Khludnev
Lucene can search segments in parallel. In Solr, you can break it to multiple shards/cores and "distributeSearch" even on single Solr instance (even without SolrCloud). On Fri, Mar 17, 2017 at 9:13 PM, Sundeep T wrote: > Hello, > > Is there a way to execute the post filter in a parallel mode so

Parallelizing post filter for better performance

2017-03-17 Thread Sundeep T
Hello, Is there a way to execute the post filter in a parallel mode so that multiple query results can be filtered in parallel? Right now, in our code, the post filter is becoming kind of bottleneck as we had to do some post processing on every returned result, and it runs serially in a single th