Re: JVM Crash org.apache.lucene.store.DataInput.readVInt()I

2011-11-22 Thread Roberto Fonti
Thanks Uwe and Simon and for your detailed answers. I'm reviewing my code to find where I'm using a closed index. Roberto On Nov 22, 2011, at 11:53 AM, Uwe Schindler wrote: > Hi, > > The JDK issues you are talking about are also fixed in 1.6.9_29 (not only > 1.7.0u1). So your crash is not rel

RE: JVM Crash org.apache.lucene.store.DataInput.readVInt()I

2011-11-22 Thread Uwe Schindler
Hi, The JDK issues you are talking about are also fixed in 1.6.9_29 (not only 1.7.0u1). So your crash is not related to any of the "famous java6/7 bugs" (in addition, the vint bug does *not* crash your JVM at all it just corrupts your index by returning wrong values - and this one is definitely fi

Re: JVM Crash org.apache.lucene.store.DataInput.readVInt()I

2011-11-22 Thread Simon Willnauer
hey, are you using mmap directory by any chance? Stuff like this often happens when you try to read from a already closed mmaped file. Typically you try to search or read from a already closed IndexSearcher / IndexReader, is it possible that you use a stale IndexReader in a in-flight search? The u