Re: no segments* file found

2018-12-14 Thread Mahmoud Almokadem
; at > > > com.codahale.metrics.InstrumentedExecutorService$InstrumentedCallable.call(InstrumentedExecutorService.java:197) > > at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) > > at > > > org.apache.solr.common.util.ExecutorUtil$MDCAwareThreadPoolExe

Re: no segments* file found

2018-12-14 Thread Erick Erickson
earcher(SolrCore.java:2095) > at org.apache.solr.core.SolrCore.getSearcher(SolrCore.java:2215) > at org.apache.solr.core.SolrCore.initSearcher(SolrCore.java:1091) > at org.apache.solr.core.SolrCore.(SolrCore.java:980) > ... 9 more > Caused by: org.apache.lucene.index.IndexNotFoundExcepti

no segments* file found

2018-12-14 Thread Mahmoud Almokadem
(SolrCore.java:2095) at org.apache.solr.core.SolrCore.getSearcher(SolrCore.java:2215) at org.apache.solr.core.SolrCore.initSearcher(SolrCore.java:1091) at org.apache.solr.core.SolrCore.(SolrCore.java:980) ... 9 more Caused by: org.apache.lucene.index.IndexNotFoundException: no segments* file found

RE: java.io.FileNotFoundException: no segments* file found

2008-08-28 Thread Kashyap, Raghu
Is it possible that the index is corrupted? Did you try re indexing it? -Raghu -Original Message- From: Jeremy Hinegardner [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2008 11:34 AM To: Solr Users Subject: java.io.FileNotFoundException: no segments* file found Hi all, I've

java.io.FileNotFoundException: no segments* file found

2008-08-27 Thread Jeremy Hinegardner
Hi all, I've had a multicore system running for while now, and I just cycled the jetty server and all of a sudden I got this error: SEVERE: java.lang.RuntimeException: java.io.FileNotFoundException: no segments* file found in org.apache.lucene.store.FSDirectory@/opt/cisearch/ci-content

no segments* file found

2007-11-12 Thread SDIS M. Beauchamp
* file found in org.apache.lucene.store.FSDirectory@/root/trunk/example/solr/data/index: files: _7xr.tis _7xt.fdt _7o1.tii _7xq.tis _7xn.nrm _7ws.fdt _7xt.prx _7xp.nrm _7ws.nrm _7xo.nrm _7ws.tis _7xs.fdt _7vc.fnm _7u6.tis _7vx.fnm _7vx.frq _7xs.nrm _7xn.tis _7xq.frq _7xs.tis _7xq.prx _7vx.fdx _7ur.tii

Re: no segments* file found

2007-11-12 Thread Venkatraman S
got a too many files open at about 450K files and 3 Gb index If i optimize I've got this stacktrace during the commit of all the following update result status=1java.io.FileNotFoundException: no segments* file found in org.apache.lucene.store.FSDirectory@/root/trunk/example/solr/data/index

RE: no segments* file found

2007-11-12 Thread SDIS M. Beauchamp
@lucene.apache.org Objet : Re: no segments* file found are you using embedded solr? I had stumbled on a similar error : http://www.mail-archive.com/solr-user@lucene.apache.org/msg06085.html -V On Nov 12, 2007 2:16 PM, SDIS M. Beauchamp [EMAIL PROTECTED] wrote: I'm using solr to index our files servers ( 480K

Re: no segments* file found

2007-11-12 Thread Yonik Seeley
On Nov 12, 2007 3:46 AM, SDIS M. Beauchamp [EMAIL PROTECTED] wrote: If I don't optimize, I 've got a too many files open at about 450K files and 3 Gb index You may need to increase the number of filedescriptors in your system. If you're using Linux, see this:

Re: Solr Index - no segments* file found in org.apache.lucene.store.FSDirectory

2007-09-20 Thread Chris Hostetter
: Does this case arise when i do a search when there is no index?? - If yes, : then i guess the Exception can be made more meaningful. in normal operation, i believe this shouldn't happen -- Solr will create the index for you on startup if there isn't one. You're attampting a fairly advanced

Solr Index - no segments* file found in org.apache.lucene.store.FSDirectory

2007-09-19 Thread Venkatraman S
org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet jsp threw exception java.io.FileNotFoundException: no segments* file found in org.apache.lucene.store.FSDirectory@/data/pub/index: files: at org.apache.lucene.index.SegmentInfos$FindSegmentsFile.run

Re: Solr Index - no segments* file found in org.apache.lucene.store.FSDirectory

2007-09-19 Thread Bill Au
that the SolrCore is committed and closed suitably in our Embedded Solr. Error (StackTrace) : Sep 19, 2007 9:41:41 AM org.apache.catalina.core.StandardWrapperValveinvoke SEVERE: Servlet.service() for servlet jsp threw exception java.io.FileNotFoundException: no segments* file found

Re: Solr Index - no segments* file found in org.apache.lucene.store.FSDirectory

2007-09-19 Thread Venkatraman S
org.apache.catalina.core.StandardWrapperValveinvoke SEVERE: Servlet.service() for servlet jsp threw exception java.io.FileNotFoundException: no segments* file found in org.apache.lucene.store.FSDirectory@/data/pub/index: files: at org.apache.lucene.index.SegmentInfos

Re: Solr Index - no segments* file found in org.apache.lucene.store.FSDirectory

2007-09-19 Thread Chris Hostetter
: Product : Solr (Embedded)Version : 1.2 : java.io.FileNotFoundException: no segments* file found in : org.apache.lucene.store.FSDirectory@/data/pub/index: files: According to that, the FSDirectory was empty when it ws opened (a file list is suppose to come after that files: part) you

Re: Solr Index - no segments* file found in org.apache.lucene.store.FSDirectory

2007-09-19 Thread Venkatraman S
On 9/20/07, Chris Hostetter [EMAIL PROTECTED] wrote: you imply that you are building your index using embedded solr, but based on your stack trace it seems you are using Solr in a servlet container ... i assume to search the index you've already built? I have a jsp that routes the info