Re: SolrJ and Streaming

2017-04-18 Thread Joe Obernberger
Thank you Joel; exactly what I needed! Just had to change it to use CloudSolrStream instead. Much appreciated! -Joe On 4/18/2017 3:21 PM, Joel Bernstein wrote: Are you trying to send a streaming expression using SolrJ? If you are you can send the expression with the SolrStream. for example:

Re: SolrJ and Streaming

2017-04-18 Thread Joel Bernstein
paramsLoc in my last email should be params Joel Bernstein http://joelsolr.blogspot.com/ On Tue, Apr 18, 2017 at 3:21 PM, Joel Bernstein wrote: > Are you trying to send a streaming expression using SolrJ? > > If you are you can send the expression with the SolrStream. for example: > > params =

Re: SolrJ and Streaming

2017-04-18 Thread Joel Bernstein
Are you trying to send a streaming expression using SolrJ? If you are you can send the expression with the SolrStream. for example: params = new ModifiableSolrParams(); params.set("expr", expr); params.set("qt", "/stream"); SolrStream stream = new SolrStream(url, paramsLoc); try { stream.ope