On Jun 10, 2012, at 2:56 AM, Anatoli Matuskova wrote: > I've thought in setting replication in solrCloud: > http://www.searchworkings.org/forum/-/message_boards/view_message/339527#_19_message_339527 > What I don't know is if while replication is being handled, the replica > slaves (that are not the master in replication) can keep handling puts via > transaction log >
Yes. We have two types of replication, peer-sync, which is simply an exchange of updates, and full index replication. If we do full index replication we basically do this: 1. start buffering updates with the transaction log 2. send a commit to the master 3. replicate 4. apply buffered updates - Mark Miller lucidimagination.com