Re: trying to resolve error: after flush: fdx size mismatch

2010-04-16 Thread jm
On Fri, Apr 16, 2010 at 5:01 PM, jm wrote: > oh, just FYI, the documents I add are the same, they have all the same I meant 'are NOT the same size'... - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additio

Re: trying to resolve error: after flush: fdx size mismatch

2010-04-16 Thread jm
oh, just FYI, the documents I add are the same, they have all the same 5 o 6 fields, but the contents of a couple of those fields can vary wildly among documents. Virus checkers and similar stuff: no. Lock factory: I am using this: FSDirectory directory = FSDirectory.getDirectory(index); director

Re: trying to resolve error: after flush: fdx size mismatch

2010-04-16 Thread Michael McCandless
It's also exceptionally strange that the size of your fdx files, when you hit the exception, is not even, and so out of whack (103, 8457 bytes) given that you have 1 doc. Are there virus checkers or any other filesystem spying type apps running on this one machine? Or... is it possible two IWs we

Re: trying to resolve error: after flush: fdx size mismatch

2010-04-15 Thread jm
not sure if it matters, but I have to correct my statment, where this has happened was both times win2008 R1 64bits, local filesystem. I am trying to reproduce in my dev workstation but unable so far. On Thu, Apr 15, 2010 at 10:11 AM, jm wrote: > Hi Mike > > I have a server side, exposes a webse

Re: trying to resolve error: after flush: fdx size mismatch

2010-04-15 Thread jm
Hi Mike I have a server side, exposes a webservice with operations (this is simplified ignoring things non lucene related): - addToIndex(doc, date) - flushAllIndexes() addToIndex() adds the doc to the index, the index is chosen based on the date (simplified it's one index per day). To speed this

Re: trying to resolve error: after flush: fdx size mismatch

2010-04-14 Thread Michael McCandless
Not good! Can you describe how your threads work with Lucene? Is this just a local filesystem (disk) under vista? Mike On Wed, Apr 14, 2010 at 7:41 AM, jm wrote: > Hi, > > I am trying to chase an issue in our code and it is being quite > difficult. We have seen two instances (see below) where