Re: Solr streaming questions

2017-11-02 Thread Webster Homer
This is a new project, and it's requirements are not yet completely defined. The system we are looking at building is an automated B2B system where a customer's system calls in with queries and we return products, skus, pricing and availability to the caller. As it turns out relevancy will not be

Re: Solr streaming questions

2017-11-01 Thread Erick Erickson
Perhaps if you bothered to explain your use-case we could suggest alternatives. Streaming is built to handle very large result sets in a divide-and-conquer manner, thus the ability to specify worker nodes each of which handles a sub-set of the results. Partitioning the output streams requires a w

Re: Solr streaming questions

2017-11-01 Thread Webster Homer
I know that /select supports score. However, I don't want to have to page the results, I want to use stream to stream the results of a search, but I cannot sort by the relevancy of the result. This seems like a MAJOR deficit for the streaming API /select wants to do paging which in my case I don't

Re: Solr streaming questions

2017-10-31 Thread Joel Bernstein
It is not possible to use score with the /export handler. The /export handler currently only supports sorting by fields. You can sort by score using the default /select handler. Joel Bernstein http://joelsolr.blogspot.com/ On Tue, Oct 31, 2017 at 1:50 PM, Webster Homer wrote: > I have a potent

Solr streaming questions

2017-10-31 Thread Webster Homer
I have a potential use case for solr searching via streaming expressions. I am currently using solr 6.2.0, but we will soon be upgrading to the 7.1.0 version. I started testing out searching using streaming expressions. 1. If I use an alias instead of a collection name it fails. I see that there i