On 8/19/2015 7:52 AM, Jeff Courtade wrote: > We are running SOLR 4.7.2 > SolrCloud with 2 shards > one Leader and one replica per shard. > > the "Version" of the replica and leader differ displayed here as... > > curl http://ps01:8983/solr/admin/cores?action=STATUS |sed 's/></>\n</g' > > <long name="version">7753045</long> > > > However the commitTimeMSec lastModified and sizeInBytes matches on Leader > and replica
SolrCloud works very differently than the old master-slave replication. The index is NOT copied from the leader to the other replicas, except in extreme recovery circumstances. Each replica builds its own copy of the index independently from the others. Due to slight timing differences in the indexing operations, and possible actions related to transaction log replay on node restart, each replica may end up with a different index layout. There also could be differences in the number of deleted documents. Unless something goes really wrong, all replicas should contain the same live documents. Thanks, Shawn