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
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
: 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
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
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