SOLR 8.11.2 Error (Max requests queued per destination 3000 exceeded for HttpDestination)

2022-09-06 Thread Nikhilesh Jannu
Hi Team, We updated our SOLR version from 8.5.1 to 8.11,2. We are seeing the following error and it happens intermittently and we miss updates to the SOLR Collections. *Max requests queued per destination 3000 exceeded for HttpDestination* As per the previous threads I see the recommendation

Re: Stream - substitute result from output of a stream expr as filter query to another expr

2022-09-06 Thread Susheel Kumar
Hi Joel, sorry I missed your reply. Let me explain again my problem statement as I don't think JOIN can help here unless I am not able to read your mind :). What I am looking for is to substitute output from one stream and use it as a filter query value in another stream; not really the key match

Re: using multiple level facets in streaming expressions

2022-09-06 Thread Joel Bernstein
It sounds like you're looking for hierarchical output of facets. Streaming Expressions flattens the hierarchy like a mulit-dimension SQL group by does, so there isn't currently support for having the facet tree result. This decision was made because most visualization tools work with SQL style

Re: MultiLevel Collapse Supproted by Solr?

2022-09-06 Thread Joel Bernstein
I believe this is supported on newer of Solr 8.5 and above. The expand code has a specific comment that deals with multiple collapse fields: // if there are multiple collapse pick the low cost one // if cost are equal then first one is picked So, you can specify a cost on the

Solr SSL Troubleshooting

2022-09-06 Thread Rayner, June
Hi Folks We are following the steps in this document to enable SSL for our Solr 8.11 installation. We generated the certificate and a key, and updated the solr.in.sh file to enable the SSL related system properties. When we

Hints needed for finding reasons of oom only on follower

2022-09-06 Thread Andreas Mock
Hi all, I want to ask whether someone could give me a hint or pointer for investigating a problem I have with solr version 8.11.2 but only on a follower instance. 1) I don't use the the cluster version. 2) I have one instance which is configured as leader, so that follower can pull core data and

MultiLevel Collapse Supproted by Solr?

2022-09-06 Thread Daxesh Parmar
Hii, I wanted to know whether solr provides a feature to do a second collapse on expanded results or not? For my use case I am doing collapse of fieldA, and getting expandedResults. I need the expanded results in such a way that all the values under fieldB are present in expandedResults. Eg. I am

Re: using multiple level facets in streaming expressions

2022-09-06 Thread t sornin
Joel send me this a while back: https://issues.apache.org/jira/browse/SOLR-9103 You can write your own plugin to make the multiple facet stream tuples nested as required. Mathew On Tue, Sep 6, 2022, 6:09 AM Shankar R wrote: > Hi Joel, > I am looking for nested faceted queries supported by

Re: using multiple level facets in streaming expressions

2022-09-06 Thread Shankar R
Hi Joel, I am looking for nested faceted queries supported by JSON Facet API as part of streaming expressions. The above link I already checked. sth like this facet : child_facet: grand_child_facet: On Tue, Sep 6, 2022 at 3:36 PM Shankar R wrote: > Thanks

Re: using multiple level facets in streaming expressions

2022-09-06 Thread Shankar R
Thanks Joel. I am looking for nested faceted queries supported by JSON Facet API. The above link I already checked. sth like this facet : child_facet: grand_child_facet: Regards Ravi On Tue, Sep 6, 2022 at 2:45 AM Joel Bernstein wrote: > There is an example