Then those files are expected. Your 2nd open was with APPEND, which means newly indexed documents are written into a new set of files.
Lucene is segment based, so your first batch of documents are in segment _0, while your second batch is in _1 and _2. Mike McCandless http://blog.mikemccandless.com On Thu, Jan 31, 2013 at 2:54 PM, saisantoshi <[email protected]> wrote: > It's _0.si ( typo) > > For second update, create = "false". > > Thanks, > Sai. > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/IndexWriterConfig-OpenMode-CREATE-vs-OpenMode-APPEND-index-files-tp4037766p4037785.html > Sent from the Lucene - Java Users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
