Replica state of Solr 8.8.2 compatible to Sitecore 10.2 is always down

2022-01-20 Thread Bhansali, Akanksha
Hi Fellow Community Members, I created Solr Cloud setup with 3 Zookeeper ensemble. Everything's working fine. I can create collections with active shards but my replica state is always down. Replicas are not able to elect leaders and that's why they are always down. What can I do to resolve thi

Problem with Join query and FilterCache

2022-01-20 Thread PatentPulse
Hello, We updated SOLR to 8.11.0 and now we have this message when we do a query with a JOIN "q":"{!join from=cat to=id}airbag", We receive this error message: "error":{ "metadata":[ "error-class","org.apache.solr.common.SolrException", "root-error-class","org.apache.solr.co

Re: Sudden increase in threads

2022-01-20 Thread 123456780sss
Thanks for the advice, it looks like a promising direction. However, we've checked the nproc and nofile in our cluster and right now they are set to 4096 each, unlike the 1024 that was theorized. We will probably try to raise it to 8192 anyway, but we're not sure that the impact will be as great

Re: Problem with Join query and FilterCache

2022-01-20 Thread Mike Drob
Yep, you should change from LRUCache to CaffeineCache in your solrconfig.xml The page that error message refers to is https://solr.apache.org/guide/8_11/query-settings-in-solrconfig.html#caches Mike On Thu, Jan 20, 2022 at 4:50 AM PatentPulse wrote: > Hello, > > > > We updated SOLR to 8.11.0 a

Re: Problem with Join query and FilterCache

2022-01-20 Thread Andy Lester
> On Jan 20, 2022, at 8:02 AM, Mike Drob wrote: > > Yep, you should change from LRUCache to CaffeineCache in your solrconfig.xml And, the CaffeineCache has to be set as async. It defaults to async, but I added the async=“true” to be explicit in my solrconfig.xml

RE: Problem with Join query and FilterCache

2022-01-20 Thread Bruno Mannina
Perfect ! it works, Thanks a lot ! -Message d'origine- De : Andy Lester [mailto:a...@petdance.com] Envoyé : jeudi 20 janvier 2022 16:05 À : users@solr.apache.org Objet : Re: Problem with Join query and FilterCache > On Jan 20, 2022, at 8:02 AM, Mike Drob wrote: > > Yep, you should cha

Re: Sudden increase in threads

2022-01-20 Thread Shawn Heisey
On 1/20/22 5:54 AM, 123456780sss wrote: However, we've checked the nproc and nofile in our cluster and right now they are set to 4096 each, unlike the 1024 that was theorized. We will probably try to raise it to 8192 anyway, but we're not sure that the impact will be as great as expected initi