Re: readModifiedUTF8String stuck

2009-04-24 Thread MakMak
size is 25, 25 documents are loaded per search request to be shown to the user. - I will try to reproduce this locally. Michael McCandless-2 wrote: > > On Tue, Apr 21, 2009 at 6:25 PM, MakMak wrote: >>   Ran CheckIndex. This is what it prints out: >> >> cantOpenSegments: fa

Re: readModifiedUTF8String stuck

2009-04-21 Thread MakMak
trying to bring the indexes out of the SAN and into the local filesystem to see if these issues remain. Will keep you posted. Anymore hints? -thanks a ton for all the help Michael McCandless-2 wrote: > > On Mon, Apr 20, 2009 at 6:07 PM, MakMak wrote: > >>   I made a standalon

Re: readModifiedUTF8String stuck

2009-04-20 Thread MakMak
hanks Michael McCandless-2 wrote: > > On Fri, Apr 17, 2009 at 5:05 AM, MakMak wrote: > >> I am not retrieving many docs, the problem is that the whole file is >> stored >> in the doc. I need the file content for highlighter to work. But the >> files >> a

Re: readModifiedUTF8String stuck

2009-04-17 Thread MakMak
I am not retrieving many docs, the problem is that the whole file is stored in the doc. I need the file content for highlighter to work. But the files are normal-sized text files which in any case should not exceed 10-15mb. Retrieving 25 of them(page size), worst case scenario will take 250mb of

Re: readModifiedUTF8String stuck

2009-04-17 Thread MakMak
Please do not mind these more traces: -- ExecuteThread: '30' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "647" seconds working on the request "Http Request: /search_results.jsp

readModifiedUTF8String stuck

2009-04-16 Thread MakMak
Please have a look at the following 2 stack traces: "[STUCK] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x0001018de580 nid=0x62 runnable [0xf

Re: Deadlock in using FSDirectory

2009-03-06 Thread MakMak
Hey Mike, thanks for the quick response, I tried passing Directory to IndexReader.open() and there were no deadlocks!! I will get rid of synchronizing on FSDirectory too. However do you think it will be better to modify the docs for FSDirectory and remove the sync part of "Directories are cached

Deadlock in using FSDirectory

2009-03-06 Thread MakMak
Hi, I have the following : Thread1 1. Acquires a lock on FSDirectory.getDirectory (not right, not needed, but should not be harmful anyway) 2. Issues an IndexReader.reopen() to open the reader and search. This call waits on acquiring a MultiSegmentReader lock. Thread2 - 1. Issues