Re: “Too many open files" error hit when I run my Lucene 3.0.3 application on Java 8

2017-02-22 Thread Uwe Schindler
The garbage collector in Java 8 may have different behavior. This may cause issues if you have buggy code that does not close indexreaders open in parallel to indexing. If it relies on Garbage Collector to close accidentally open files, that won't work anymore on Java 8. The reason for this migh

Re: “Too many open files" error hit when I run my Lucene 3.0.3 application on Java 8

2017-02-22 Thread Torsten Krah
What does lsof tell - which handles are open and which are unexpected or suspicious? Am 22.02.2017 5:27 nachm. schrieb "Leonid Bolshinsky" : > No code changes between running in Java 6 and Java 8. The same code still > runs successfully with Java 6 while is failing with Java 8. > > On Feb 22, 201

Re: “Too many open files" error hit when I run my Lucene 3.0.3 application on Java 8

2017-02-22 Thread Leonid Bolshinsky
No code changes between running in Java 6 and Java 8. The same code still runs successfully with Java 6 while is failing with Java 8. On Feb 22, 2017 5:52 PM, "Frederik Van Hoyweghen" < frederik.vanhoyweg...@chapoo.com> wrote: Did you make any changes to your code between running on java 6 and 8?

Re: “Too many open files" error hit when I run my Lucene 3.0.3 application on Java 8

2017-02-22 Thread Frederik Van Hoyweghen
Did you make any changes to your code between running on java 6 and 8? The java file API has changed considerably since java 8. If you -have- rewritten some of the file handling code in your indexing process, make sure to explicitly close the streams you create, or use the (since java 7) try-wi

RE: Too many open files and ulimit limits reached

2011-07-02 Thread Ralf Heyde
Hi Dean, can you describe your problem more in detail? Some time ago I used Lucene to Index 50-Millions of medium-sized-text documents. But I didn't run into a problem having 1000th of open files. Maybe you can explain, what are you trying to do? Regards, Ralf -Original Message- From:

Re: Too many open files error

2011-03-23 Thread Ian Lea
No. Certainly not for lucene 3.0.3 on linux anyway. As someone has already suggested, run lsof to see which files your process has open. Maybe you aren't closing the source documents. -- Ian. On Wed, Mar 23, 2011 at 10:46 AM, Vo Nhu Tuan wrote: > I have already used compound file and closed

Re: Too many open files error

2011-03-23 Thread Vo Nhu Tuan
I have already used compound file and closed everything I can. Would this line cause problem when called many times? IndexWriter writer = new IndexWriter(FSDirectory.open(indexFile), new StandardAnalyzer(Version.LUCENE_30), true, IndexWriter.MaxFieldLength.LIMITED); This FSDirectory.open() is th

Re: Too many open files error

2011-03-23 Thread Li Li
and also try using compound files (cfs) 2011/3/23 Vo Nhu Tuan : > Hi, > > Can someone help me with this problem please? I got these when running my > program: > > java.io.FileNotFoundException: > /Users/vonhutuan/Documents/workspace/InformationExtractor/index_wordlist/_i82.frq > (Too many open

Re: Too many open files error

2011-03-23 Thread Mindaugas Žakšauskas
Hi, Have a look at this: http://wiki.apache.org/lucene-java/LuceneFAQ#Why_am_I_getting_an_IOException_that_says_.22Too_many_open_files.22.3F m. On Wed, Mar 23, 2011 at 9:48 AM, Vo Nhu Tuan wrote: > Hi, > > Can someone help me with this problem please? I got these when running my > program: >

Re: Too many open files error

2011-03-23 Thread Li Li
use lsof to count the number of opened files ulimit to modify it. maybe u need ask adminstrator to modify limit.conf 2011/3/23 Vo Nhu Tuan : > Hi, > > Can someone help me with this problem please? I got these when running my > program: > > java.io.FileNotFoundException: > /Users/vonhutuan/Docume

Re: Too many open files

2010-09-06 Thread Grijesh.singh
Ask your sys admin to increase the os max open file limit ulimit - Grijesh -- View this message in context: http://lucene.472066.n3.nabble.com/Too-many-open-files-tp1412227p1425425.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. -

Re: Too many open files

2010-09-03 Thread Ian Lea
http://wiki.apache.org/lucene-java/LuceneFAQ#Why_am_I_getting_an_IOException_that_says_.22Too_many_open_files.22.3F You are probably not closing all your searchers properly. What version of lucene are you using? I think that something changed in recent releases and old searchers that used to get

Re: Too many open files

2010-04-12 Thread David Causse
After a closer look, I forgot to mention a major clue : it's also the first time we use NRT. I thought IW.getReader() would return a pooled NRT and in fact it returns always a new IR. This should explain the Too many opened files exception. After each addDocument(doc) I prepare a reader with IW.ge

Re: Too many open files

2009-01-02 Thread Otis Gospodnetic
Nuno, Check towards the end of this article: http://www.onjava.com/pub/a/onjava/2003/03/05/lucene.html Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: Nuno Seco > To: java-...@lucene.apache.org > Sent: Friday, January 2, 2009 12:53:14 PM

RE: Too Many Open files Exception

2007-07-08 Thread Chris Hostetter
: Ok... after spending time looking at the code... I see that a method is : not closing a TokenStream in one of the classes (a class that is : instantiated quite often) - I would imagine this could quite possibly be : the culprit? can you be more specific about the code in question? I'm not sure

RE: Too Many Open files Exception

2007-07-08 Thread Chris Hostetter
: Issuing a "limit descriptors", I see that I have it set to 1024 : In the directory that I'm getting this particular error: 3 : I have 24 different index directories... I think the most I saw at that : particular time in any one index was 20 as i said ... it doesn't matter where in the code you

RE: Too Many Open files Exception

2007-07-05 Thread Van Nguyen
PROTECTED] Sent: Tuesday, July 03, 2007 9:41 PM To: java-user@lucene.apache.org Subject: Re: Too Many Open files Exception : I am getting a "Too Many Open Files" Exception. I've read the FAQ about : lowering the merge factor (currently set to 25), issuing a ulimit -n : , etc... but I a

RE: Too Many Open files Exception

2007-07-05 Thread Van Nguyen
: so ... what is your ulimit set to? Issuing a "limit descriptors", I see that I have it set to 1024 : how many files are in your index directory? In the directory that I'm getting this particular error: 3 I have 24 different index directories... I think the most I saw at that particular time i

Re: Too Many Open files Exception

2007-07-03 Thread Chris Hostetter
: I am getting a "Too Many Open Files" Exception. I've read the FAQ about : lowering the merge factor (currently set to 25), issuing a ulimit -n : , etc... but I am still getting the "Too Many Open Files" : Exception (yes... I'm making sure I close all writer/searchers/reader : and I only have one

Re: Too many open files?!

2007-02-14 Thread Michael Prichard
That helped! Thanks! I just added some .close() calls to a few places where I kept file handles open and it worked quite nicely. Good lesson, make sure you all clean up after yourselves! Thanks, Michael On Feb 14, 2007, at 8:04 PM, Steven Parkes wrote: See the wiki: http://wiki.apache.

RE: Too many open files?!

2007-02-14 Thread Steven Parkes
See the wiki: http://wiki.apache.org/jakarta-lucene/LuceneFAQ#head-48921635adf2c968f79 36dc07d51dfb40d638b82 -Original Message- From: Michael Prichard [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 14, 2007 5:02 PM To: java-user@lucene.apache.org Subject: Too many open files?! I am

Re: Too many open files when doing performance testing

2005-09-01 Thread Otis Gospodnetic
09/01/2005 09:07 > cc > PM > > > Subject >Re: Too many open files when >

Re: Too many open files when doing performance testing

2005-09-01 Thread Akhil Jain
09/01/2005 09:07 PM Please respond to java-user To java-user@lucene.apache.org cc Subject Re: Too many open files when doing performance testing Hi, 2000 doesn't sound very high.  I've used much higher values.  Because you have so many fields and files, you may wa

Re: Too many open files when doing performance testing

2005-09-01 Thread Otis Gospodnetic
Hi, 2000 doesn't sound very high. I've used much higher values. Because you have so many fields and files, you may want to increase it. If you have Lucene in Action, we have a formula in there for calculating the number of open files used (section 2.7, according to http://www.lucenebook.com/sea

Re: Too many open files when doing performance testing

2005-09-01 Thread jaina (sent by Nabble.com)
Thanks Chris. We are looking at it and have tried few of those things. Will let you know once we have tried all of them. Thanks again. -- Sent from the Lucene - Java Users forum at Nabble.com: http://www.nabble.com/Too-many-open-files-when-doing-performance-testing-t272369.html#a766965

Re: Too many open files when doing performance testing

2005-09-01 Thread jaina (sent by Nabble.com)
Thanks Otis for your questions. Here are the answers... Please let me know your thoughts We do optimize() after indexWrite. The maximum open file allowed is 2,000. Is this normal, too small? What is your recommended number ? We have 57 index files, how many files that Lucene index will a

Re: Too many open files when doing performance testing

2005-09-01 Thread Chris Hostetter
This is discussed extensively in the FAQ... Why am I getting an IOException that says "Too many open files"? http://wiki.apache.org/jakarta-lucene/LuceneFAQ#head-48921635adf2c968f7936dc07d51dfb40d638b82 : Date: Thu, 1 Sep 2005 19:30:40 -0700 (PDT) : From: "jaina (sent by Nabble.com)" <[

Re: Too many open files when doing performance testing

2005-09-01 Thread Otis Gospodnetic
How many files are in the index directory? If your index is not optimized, try optimizing it first? What's the max number of open files (ulimit -a)? If it looks low, increase it. It looks like you have 20+ fields. How many fields have you got? (just curious) It looks like you are not using the co

Re: Too many open files error using tomcat and lucene

2005-07-20 Thread jian chen
Hi, Dan, I think the problem you mentioned is the one that has been discussed lot of times in this mailing list. Bottomline is that you'd better use the compound file format to store indexes. I am not sure Lucene 1.3 has that available, but, if possible, can you upgrade to lucene 1.4.3? Cheers,

Re: Too many open files error using tomcat and lucene

2005-07-20 Thread Daniel Naber
On Wednesday 20 July 2005 22:49, Dan Pelton wrote: > We are getting the following error in our tomcat error log. > /dsk1/db/lucene/journals/_clr.f7 (Too many open files) > java.io.FileNotFoundException: /dsk1/db/lucene/journals/_clr.f7 (Too > many open files) See http://wiki.apache.org/jakarta-l