Re: CorruptIndexException: Unknown format version

2009-08-19 Thread Licinio Fernández Maurelo
It looks like your solr lucene-core version doesn't match with the lucene version used to generate the index, as Yonik said, looks like there is a lucene library conflict. 2009/8/19 Chris Hostetter : > > : how can that happen, it is a new index, and it is already corrupt? > : > : Did anybody else

Re: CorruptIndexException: Unknown format version

2009-08-18 Thread Chris Hostetter
: how can that happen, it is a new index, and it is already corrupt? : : Did anybody else something like this? "Unknown format version" doesn't mean your index is corrupt .. it means the version of LUcnee parsing the index doesn't recognize the index format version ... typically it means you a

Re: CorruptIndexException: Unknown format version

2009-08-07 Thread Yonik Seeley
Wow, that is an interesting one... I bet there is more than one Lucene version kicking around the classpath somehow. Try removing all of the servlet container's working directories. -Yonik http://www.lucidimagination.com On Fri, Aug 7, 2009 at 4:41 AM, Maximilian Hütter wrote: > Hi, > > how can t

CorruptIndexException: Unknown format version

2009-08-07 Thread Maximilian Hütter
Hi, how can that happen, it is a new index, and it is already corrupt? Did anybody else something like this? WARN - 2009-08-07 10:44:54,925 | Solr index directory 'data/solr/index' doesn't exist. Creating new index... WARN - 2009-08-07 10:44:56,583 | solrconfig.xml uses deprecated , Please updat

Re: CorruptIndexException: unknown format version: -3

2008-02-25 Thread Michael McCandless
Maybe double check your CLASSPATHs? Because, based on the line numbers in the exception, it really looks like it's Lucene 2.1 that's trying to open a Lucene 2.2+ index. The term infos file (.tii, .tis) changed from -2 -> -3 format in 2.3. Mike On Feb 25, 2008, at 7:19 AM, Paul Danese wro

Re: CorruptIndexException: unknown format version: -3

2008-02-25 Thread Paul Danese
2Unfortunately, the answer is "no". I didn't use an upgraded version of lucene or solr. this is the bizzarre issue. I'm actually using solr via the acts_as_solr plugin used in ruby. At the time, I was adding a few 100-thousand docs to the index...there appears to have been a memory leak as

Re: CorruptIndexException: unknown format version: -3

2008-02-25 Thread Walter Ferrara
did you create/modify the index with a newer version of lucene than the one you use in solr? In this case I doubt you can downgrade your index, but maybe you can upgrade lucene in your solr (search in this forum, there should be a thread about this), (or try with the latest nightly builds) Pau

CorruptIndexException: unknown format version: -3

2008-02-25 Thread Paul Danese
2Hi all, Is there any way to recover from such an error as listed in the subject heading? Luke can view the index just fine (at least at a cursory level Luke is able to open the index, give me back the # of docs, etc.), but solr throws this exception whenever I try and start it up. any ideas o