On 4/5/2016 4:09 AM, abhi Abhishek wrote: > Thanks MIkhail. > is there a way to have a push Replication. any Contributions or > Anything what could in this case?
The master-slave replication in ALL versions of Solr (including 5.x) is pull, as already mentioned. This cannot be changed. SolrCloud works very differently. When a document is indexed, it is sent to the leader of the correct shard, which then sends it to all replicas of that shard (including itself -- a leader is just a replica with an extra job). Each replica indexes the document independently. Thanks, Shawn