Dealing with multiple config sets in Solr(+cloud)
Solr in “cloud” mode (solrcloud)
One of the first steps for solrcloud cluster setup is collection configuration preparation. Usually it’s done like this:
-Dbootstrap_confdir=./solr/collection1/conf -Dcollection.configName=myconf
If you start Solr with above attributes, it will load configuration files under ./solr/collection1/conf to Zookeeper with myconf name. …
Improve and simplify Solr logging with Nginx proxy
In efforts to provide better visibility to all parts of our application framework we decided to collect and send Solr query logs to our logging farm for further analysis and smoke tests. For logging aggregation we use Logstash with Kibana – …