FYI, additional information on replication is available in the Solr TWiki:
http://wiki.apache.org/solr/CollectionDistribution Bill On 2/13/07, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote:
On 2/13/07, escher2k <[EMAIL PROTECTED]> wrote: > ...Atleast from looking at the snapshooter script, it doesn't > seem to be doing anything specific... The snapshooter script only makes an "instant snapshot" of the index directory using cp -lr. This does not involve any copying of index data. The actual replication is done using rsync in the other scripts, by copying the index snapshot elsewhere. Rsync only copies what has changed since the last copy, and not many files change in a Lucene index when adding documents, so it's correct that replication uses little bandwidth when adding documents. Index optimization, OTOH, causes much larger changes in the index directory, so after an optimization rsync will usually have much more data to transfer. -Bertrand