We have master > slave set-up with with our solr set-up. We use the master to push all the documents and slave as readonly.
Currently I'm experimenting with Atomic update
to improve indexing and avoid gathering all necessary information to re-index.
When I push update (atomic update) to master; it does reflect the change requested; however the slave is not applying the same updates to the fields!
We use good-old https://wiki.apache.org/solr/SolrReplication.
Any ideas why replication do not propagate the atomic update? is there a config I have to add to make this happens? or replication do not support Atomic update!
Thanks