You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/03/22 21:43:57 UTC

[Solr Wiki] Update of "SolrReplication" by naomidushay

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "SolrReplication" page has been changed by naomidushay.
http://wiki.apache.org/solr/SolrReplication?action=diff&rev1=61&rev2=62

--------------------------------------------------

   * slave issues a filelist command to get the list of the files. This command returns the names of the files as well as some metadata (size,lastmodified,alias if any)
   * The slave checks with its own index if it has any of those files in the local index. It then proceeds to download the missing files (The command name is 'filecontent' ). This uses a custom format (akin to the HTTP chunked encoding) to download the full content or a part of each file. If the connection breaks in between , the download resumes from the point it failed. At any point , it tries 5 times before giving up a replication altogether. 
   * The files are downloaded into a temp dir . So if the slave or master  crashes in between it does not corrupt anything. It just aborts the current replication . 
-  * After the download completes , all the new files are 'mov'ed to the live index directory and the file's timesatamp is same as it's counterpart in master.
+  * After the download completes , all the new files are 'mov'ed to the slave's live index directory and the files' timestamps will match the timestamps in the master.
-  * A 'commit' command is issued on the slave by the Slave's !ReplicationHandler and the new index is loaded,
+  * A 'commit' command is issued on the slave by the Slave's !ReplicationHandler and the new index is loaded.
  
  
  == How are configuration files replicated ? ==