Hi, The "replicateNow" button in the admin UI doesn't seem to work since the "schema.xml" (which I modified on slave) is not being updated to reflect that of the master. I have used this button before and it has always cloned index right away. Any ideas on what could be the possible reason for this?
The master and slave have proper "/replication" handlers and "schema.xml" is in the confFiles. Master's Solrconfig: ----------------------- <requestHandler name="/replication" class="solr.ReplicationHandler" > <lst name="master"> <str name="replicateAfter">commit</str> <str name= "replicateAfter">startup</str> <str name="confFiles"> schema.xml,stopwords.txt,synonyms.txt</str> </lst> </requestHandler> Slave's Solrconfig: --------------------- <requestHandler name="/replication" class="solr.ReplicationHandler" > <lst name="slave"> <str name="masterUrl">MASTER_URL</str> <str name= "pollInterval">01:00:00</str> </lst> </requestHandler> Thanks!