"larry hughes" <[EMAIL PROTECTED]> wrote:

> Wow, I did not know Lucene 2.1 can do all of this.  The problem is that I'm
> currently using 2.0.  Is there something similar to what you just mentioned
> in dealing with 2.0 indexes--backing up piecewise?  Thanks again.

Hmm, OK.  Pre-2.1 Lucene will overwrite at least the file "segments",
*.del (per segment deletions) and *.sN (only if you set norms, which
is a rather advanced function).  So probably best to use something
like "rsync" which I believe looks @ timestamp and file size to
determine that a file has changed, and then copies it over.

Also make sure all writers are closed before running the backup and no
writer opens until the backup completes (ie they are exclusive).

Mike
-- 
  Michael McCandless
  [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to