Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have indexed our documents with Lucene 2.3.1 and now want to move to Lucene 3.0.3 for better features. I want to know whether the index will work as is and will I be able to add more documents, with 3.0.3, to the existing index without any hassles or do I have to re-index the whole thing.

Thanks a lot in advance.

share|improve this question

1 Answer

up vote 3 down vote accepted

I am quite sure that the indexes will be incompatible with Lucene 3 if they were built under Lucene 2 (in fact I'm 99% positive of this).

However, you may be able to convert them rather than rebuild them. Have a look here for some high-level guidance in this area.

share|improve this answer
Thanks Brent. That article was very informative. As it mentions, the change seems to be only in the string compression. If I had not used any compression at all (Field.Store.COMPRESS), then it should not be an issue I think. Am I right ? – Siva Feb 11 '11 at 17:17
Based on the article it would seem that you are correct. Best to give the upgrade a try (maybe on a branch of your code base) and see what happens. I think it will work out to be quite simple in your case. – brent777 Feb 11 '11 at 17:43
The key note is that he's using a really old version in the 2.x branch. I believe that the newest version of the 2.x writers (2.9.x) would write indexes that 3.0 readers can work with, but not the other way around. – Simon Svensson Feb 11 '11 at 17:51
Thanks Brent and Simon. I will give direct switch a try, or else go 2.3.1 -> 2.9.4 -> 3.0.3, readers first and then writer. – Siva Feb 13 '11 at 8:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.