Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-06 Thread Jörn Franke
I created a JIRA for this: https://issues.apache.org/jira/browse/SOLR-13894 On Wed, Nov 6, 2019 at 10:45 AM Jörn Franke wrote: > I have checked now Solr 8.3 server in admin UI. Same issue. > > Reproduction: > select(search(testcollection,q=“test”,df=“Default”,defType=“edismax”,fl=“id”, > qt=“/ex

Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-06 Thread Jörn Franke
I have checked now Solr 8.3 server in admin UI. Same issue. Reproduction: select(search(testcollection,q=“test”,df=“Default”,defType=“edismax”,fl=“id”, qt=“/export”, sort=“id asc”),id,if(eq(1,1),Y,N) as found) In 8.3 it returns only the id field. In 8.2 it returns id,found field. Since found is

Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-05 Thread Jörn Franke
Thanks I will check and come back to you. As far as I remember (but have to check) the queries generated by Solr were correct Just to be clear the same thing works with Solr 8.2 server and Solr 8.2 client. It show the odd behaviour with Solr 8.2 server and Solr 8.3 client. > Am 05.11.2019 um 14

Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-05 Thread Joel Bernstein
I'll probably need some more details. One thing that's useful is to look at the logs and see the underlying Solr queries that are generated. Then try those underlying queries against the Solr index and see what comes back. If you're not seeing the fields with the plain Solr queries then we know it'

Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-04 Thread Jörn Franke
Most likely this issue can bei also reproduced in the admin UI for the streaming handler of a collection. > Am 04.11.2019 um 13:32 schrieb Jörn Franke : > > Hi, > > I use streaming expressions, e.g. > Sort(Select(search(...),id,if(eq(1,1),Y,N) as found), by=“field A asc”) > (Using export handl

Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-04 Thread Jörn Franke
Hi, I use streaming expressions, e.g. Sort(Select(search(...),id,if(eq(1,1),Y,N) as found), by=“field A asc”) (Using export handler, sort is not really mandatory , I will remove it later anyway) This works perfectly fine if I use Solr 8.2.0 (server + client). It returns Tuples in the form { “id