| From | Sent On | Attachments |
|---|---|---|
| Grant Ingersoll | Feb 24, 2010 5:41 am | |
| Chris Lu | Feb 24, 2010 9:00 am | |
| Simon Wistow | Feb 24, 2010 11:59 am | |
| Yuval Feinstein | Feb 24, 2010 12:09 pm | |
| Avi Rosenschein | Feb 24, 2010 12:18 pm | |
| Marcelo Ochoa | Feb 24, 2010 12:22 pm | |
| Michael van Rooyen | Feb 24, 2010 12:24 pm | |
| Aaron Lav | Feb 24, 2010 1:20 pm | |
| Paul Libbrecht | Feb 24, 2010 1:21 pm | |
| Avi Rosenschein | Feb 24, 2010 1:38 pm | |
| Ganesh | Feb 24, 2010 9:40 pm | |
| luoc...@sohu.com | Feb 25, 2010 12:14 am | |
| Paul Taylor | Feb 25, 2010 12:19 am | |
| Uwe Schindler | Feb 25, 2010 12:29 am | |
| Avi Rosenschein | Feb 25, 2010 1:44 am | |
| luocanrao | Feb 25, 2010 3:46 am | |
| Michael McCandless | Feb 25, 2010 7:19 am | |
| Glen Newton | Feb 25, 2010 9:21 am | |
| Jason Rutherglen | Feb 25, 2010 9:51 am | |
| Grant Ingersoll | Feb 25, 2010 10:00 am | |
| Grant Ingersoll | Feb 25, 2010 10:01 am | |
| Grant Ingersoll | Feb 25, 2010 10:02 am | |
| Mark Miller | Feb 25, 2010 10:33 am | |
| Jason Rutherglen | Feb 25, 2010 3:18 pm | |
| N. Hira | Feb 25, 2010 3:37 pm | |
| Mark Miller | Feb 25, 2010 4:02 pm | |
| Thomas Guttesen | Feb 25, 2010 4:05 pm | |
| luoc...@sohu.com | Feb 25, 2010 10:47 pm | |
| Michael McCandless | Feb 26, 2010 12:46 am | |
| Paul Taylor | Feb 26, 2010 1:30 am | |
| Glen Newton | Feb 27, 2010 7:03 am | |
| Uwe Schindler | Feb 27, 2010 7:17 am | |
| Glen Newton | Feb 27, 2010 8:18 am | |
| Ganesh | Mar 1, 2010 12:56 am |
| Subject: | Re: problem about backup index file | |
|---|---|---|
| From: | luoc...@sohu.com (luoc...@sohu.com) | |
| Date: | Feb 25, 2010 10:47:34 pm | |
| List: | org.apache.lucene.java-user | |
thanks for your paper,Michael McCandlessI have one quetion about thisFor all
other files, Lucene is "write once.”This makes doing
incremental backups very easy: Simply compare the file names.Once a
file is written, it will never change; therefore, if you've already
backed up that file, there's no need to copy it again.this means the number of
files is growing more and more.never getting less.another question:I should
delete the files previous I backup when I backup again. ----- 原文 ----- 发件人:
Michael McCandless 主 题: Re: problem about backup index file时 间: 2010年2月25日
23:19:59This is likely happening because you're attempting to copy a file
thatIndexWriter is currently writing?You shouldn't do that (copy files that are
still being written) --that just wastes bytes (they aren't used by the index),
and causesthis failure on Windows.Instead, you should use SnapshotDeletionPolicy
-- it tells youspecifically which files make up the latest commit point. Those
fileswill not be opened for writing (only for reading, if you have anIndexReader
open on that commit) and they should copy just fine onwindows.The "Hot backups
with Lucene" article (NOTE: I'm the author) inupcoming Lucene in Action 2
revision shows how to do this -- it'savailable for download from
http://manning.com/hatcher3.MikeOn Thu, Feb 25, 2010 at 3:15 AM,
<luoc...@sohu.com> wrote:> I want backup my index file,but I get
the follow error.> java.io.IOException:&nbsp;another program lock the
file!&nbsp;at java.io.FileInputStream.readBytes(Native Method)&nbsp;at
java.io.FileInputStream.read(Unknown Source)&nbsp;at
com.common.Utils.copyDirectory(Utils.java:149)&nbsp;at
com.common.Utils.copyDirectory(Utils.java:138)&nbsp;at
com.common.Utils.copyDirectory(Utils.java:138)&nbsp;at
com.index.IndexManager.backDataPolicy(IndexManager.java:398)&nbsp;at
com.index.IndexManager.indexLoop(IndexManager.java:222)&nbsp;at
com.Main$1.run(Main.java:48)&nbsp;at java.lang.Thread.run(Unknown
Source)> &nbsp;> How can I backup lucene file in IR
thread.---------------------------------------------------------------------To
unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.orgFor additional
commands, e-mail: java...@lucene.apache.org





