Tomcat & Solr - do i need to regenerate solr.war if solrconfig.xml or other conf files being modified?
By : BogusWeb
Date : March 29 2020, 07:55 AM
Hope that helps You just need to redeploy or restart tomcat. You do not need generate a new solr.war. Solr configuration is outside solr.war as identified by solr.home variable. However if you are using solr with multiple cores, you can do a RELOAD of the core to pickup configuration changes. http://wiki.apache.org/solr/CoreAdmin
|
Is it possible to filter Solr results using solrconfig.xml?
By : Ramon Jardon
Date : March 29 2020, 07:55 AM
around this issue The request handler wiki page shows how to specify default values: code :
<requestHandler name="/foo" class="my.package.CustomRequestHandler" />
<!-- initialization args may optionally be defined here -->
<lst name="defaults">
<int name="rows">10</int>
<str name="fl">*</str>
<str name="version">2.1</str>
</lst>
</requestHandler>
|
Error loading solr config from solrconfig.xml
By : user3866098
Date : March 29 2020, 07:55 AM
wish of those help Not enough data. It seems like your core is misconfigured for 5.2.1
|
solr query warmup troubles and solrconfig.xml
By : jeff
Date : March 29 2020, 07:55 AM
I wish did fix the issue. It turned out that this was not related to SolR at all but to internal routing. For those interested it turned out that ipv6 DNS was checked and needed to timeout before the IPv4 address was used, so the delay was from a DNS lookup+timeout and NOT from SOLr.
|
Where are solr.xml, solrconfig.xml and schema.xml located?
By : sio
Date : March 29 2020, 07:55 AM
like below fixes the issue Cloudera has whole new approach about Solr Configuration (Cloudera Search). solr.xml, solrconfig.xml and schema.xml are under solr_configs/conf folder (what you have created while adding new collection USING solrctl - probably at /home/solr)
|