You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Michael McCandless (JIRA)" <ji...@apache.org> on 2009/11/08 18:47:32 UTC

[jira] Updated: (LUCENE-2045) FNFE hit when creating an empty index and infoStream is on

     [ https://issues.apache.org/jira/browse/LUCENE-2045?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michael McCandless updated LUCENE-2045:
---------------------------------------

    Fix Version/s: 2.9.2

> FNFE hit when creating an empty index and infoStream is on
> ----------------------------------------------------------
>
>                 Key: LUCENE-2045
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2045
>             Project: Lucene - Java
>          Issue Type: Bug
>          Components: Index
>            Reporter: Michael McCandless
>            Assignee: Michael McCandless
>            Priority: Minor
>             Fix For: 2.9.2, 3.0
>
>
> Shai just reported this on the dev list.  Simple test:
> {code}
> Directory dir = new RAMDirectory();
> IndexWriter writer = new IndexWriter(dir, new SimpleAnalyzer(), MaxFieldLength.UNLIMITED);
> writer.setInfoStream(System.out);
> writer.addDocument(new Document());
> writer.commit();
> writer.close();
> {code}
> hits this:
> {code}
> Exception in thread "main" java.io.FileNotFoundException: _0.prx
>     at org.apache.lucene.store.RAMDirectory.fileLength(RAMDirectory.java:149)
>     at org.apache.lucene.index.DocumentsWriter.segmentSize(DocumentsWriter.java:1150)
>     at org.apache.lucene.index.DocumentsWriter.flush(DocumentsWriter.java:587)
>     at org.apache.lucene.index.IndexWriter.doFlushInternal(IndexWriter.java:3572)
>     at org.apache.lucene.index.IndexWriter.doFlush(IndexWriter.java:3483)
>     at org.apache.lucene.index.IndexWriter.flush(IndexWriter.java:3474)
>     at org.apache.lucene.index.IndexWriter.addDocument(IndexWriter.java:1940)
>     at org.apache.lucene.index.IndexWriter.addDocument(IndexWriter.java:1894)
> {code}
> Turns out it's just silly -- this is actually an issue I've already fixed on the flex (LUCENE-1458) branch.  DocumentsWriter has its own method to enumerate the flushed files and compute their size, but really it shouldn't do that -- it should use SegmentInfo's method, instead.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org