Re: maxBooleanClauses change in solr.xml not reflecting in solr 8.4.1

2021-01-06 Thread dinesh naik
Thanks Hoss, Yes, i was making the change in solr.xml in wrong directory earlier. Also as you said: : You need to update EVERY solrconfig.xml that the JVM is loading for this to : actually work. that has not been true for a while, see SOLR-13336 / SOLR-10921 ... I validated this and it's workin

Re: maxBooleanClauses change in solr.xml not reflecting in solr 8.4.1

2021-01-06 Thread dinesh naik
Thanks Shawn, This entry ${solr.max.booleanClauses:2048} in solr.xml was introduced only in solr 8.x version and were not present in 7.6 version. We have this in solrconfig.xml in 8.4.1 version. ${solr.max.booleanClauses:2048} i was updating the solr.xml in the installation directory and not t

Re: maxBooleanClauses change in solr.xml not reflecting in solr 8.4.1

2021-01-06 Thread Chris Hostetter
: You need to update EVERY solrconfig.xml that the JVM is loading for this to : actually work. that has not been true for a while, see SOLR-13336 / SOLR-10921 ... : > 2. updated solr.xml : : > ${solr.max.booleanClauses:2048} : : I don't think it's currently possible to set the value with solr

Re: maxBooleanClauses change in solr.xml not reflecting in solr 8.4.1

2021-01-05 Thread Shawn Heisey
On 1/5/2021 8:26 AM, dinesh naik wrote: Hi all, I want to update the maxBooleanClauses to 2048 (from default value 1024). Below are the steps tried: 1. updated solrconfig.xml : ${solr.max.booleanClauses:2048} You need to update EVERY solrconfig.xml that the JVM is loading for this to actually

Re: maxBooleanClauses change in solr.xml not reflecting in solr 8.4.1

2021-01-05 Thread ANNAMANENI RAVEENDRA
I experienced the same thing in solr-8.7 , it worked for me using system property. Set system property in solr.in.sh file On Tue, Jan 5, 2021 at 8:58 PM dinesh naik wrote: > Hi all, > I want to update the maxBooleanClauses to 2048 (from default value 1024). > Below are the steps tried: > 1. up

Re: maxBooleanClauses in solrconfig.xml is ignored

2016-04-07 Thread Zaccheo Bagnati
No SolrCloud. however I've found the problem (though the reason it is not completely clear to me). I was passing terms as field:("term1" "term2",,,) I simply changed it as field:(term1 term2 ...) and it worked as expected I'm not so expert in reading debugQuery output but parsed_filter_queries val

Re: maxBooleanClauses in solrconfig.xml is ignored

2016-04-07 Thread Jack Krupansky
Edismax phrase-boost terms? -- Jack Krupansky On Thu, Apr 7, 2016 at 10:28 AM, Shawn Heisey wrote: > On 4/7/2016 8:05 AM, Zaccheo Bagnati wrote: > > I'm trying to set the maxBooleanClauses parameter in solrconfig.xml to > 1024 > > but I still have "Too many boolean clauses" error even with 513

Re: maxBooleanClauses in solrconfig.xml is ignored

2016-04-07 Thread Shawn Heisey
On 4/7/2016 8:05 AM, Zaccheo Bagnati wrote: > I'm trying to set the maxBooleanClauses parameter in solrconfig.xml to 1024 > but I still have "Too many boolean clauses" error even with 513 terms (with > 512 terms it works). > I've read in the documentation ( > https://cwiki.apache.org/confluence/dis

Re: maxBooleanClauses

2007-12-20 Thread Erick Erickson
>From the javadocs for BooleanQuery class static void *setMaxClauseCount *(int maxClauseCount) Set the maximum number of clauses permitted per BooleanQuery. Erick On Dec 20,