Hi, I am migrating old schema/solrconfig to a new solrcloud 5.2 from 4.3.1 single core. In this guide: https://cwiki.apache.org/confluence/display/solr/SolrCloud+with+Legacy+Configuration+Files They tell you: <updateHandler> <updateLog> <str name="dir">${solr.data.dir:}</str> </updateLog> </updateHandler> And in the other guide: https://cwiki.apache.org/confluence/display/solr/UpdateHandlers+in+SolrConfig They tell you <updateLog> <str name="dir">${solr.ulog.dir:}</str> <int name="numRecordsToKeep">500</int> <int name="maxNumLogsToKeep">20</int> <int name="numVersionBuckets">65536</int> </updateLog>
So what should I use ? solr.data.dir Or solr.udir.dir ? Or both nodes ? I am trying to integrate my existing UpdateRequestHandler plugin. -- - Ilan Schwarts