[ 
https://issues.apache.org/jira/browse/LUCENE-2312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12847140#action_12847140
 ] 

Jason Rutherglen commented on LUCENE-2312:
------------------------------------------

I'm hitting a weird error where after executing a ram buf term docs iteration, 
adding some docs, then closing the the DWs and the writer, there's an exception 
which indicates some unknown (to me) state was modified because of the term 
docs iteration.  Or maybe it's obvious? :)

{code}
org.apache.lucene.index.CorruptIndexException: docs out of order (-2147483648 
<= 2147483647 )
        at 
org.apache.lucene.index.FormatPostingsDocsWriter.addDoc(FormatPostingsDocsWriter.java:76)
        at 
org.apache.lucene.index.FreqProxTermsWriter.appendPostings(FreqProxTermsWriter.java:209)
        at 
org.apache.lucene.index.FreqProxTermsWriter.flush(FreqProxTermsWriter.java:127)
        at org.apache.lucene.index.TermsHash.flush(TermsHash.java:145)
        at org.apache.lucene.index.DocInverter.flush(DocInverter.java:72)
        at 
org.apache.lucene.index.DocFieldProcessor.flush(DocFieldProcessor.java:64)
        at 
org.apache.lucene.index.DocumentsWriter.flush(DocumentsWriter.java:1185)
        at 
org.apache.lucene.index.IndexWriter.doFlushInternal(IndexWriter.java:3824)
        at org.apache.lucene.index.IndexWriter.doFlush(IndexWriter.java:3733)
        at org.apache.lucene.index.IndexWriter.flush(IndexWriter.java:3712)
        at 
org.apache.lucene.index.IndexWriter.closeInternal(IndexWriter.java:1807)
{code}

> Search on IndexWriter's RAM Buffer
> ----------------------------------
>
>                 Key: LUCENE-2312
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2312
>             Project: Lucene - Java
>          Issue Type: New Feature
>          Components: Search
>    Affects Versions: 3.0.1
>            Reporter: Jason Rutherglen
>            Assignee: Michael Busch
>             Fix For: 3.1
>
>
> In order to offer user's near realtime search, without incurring
> an indexing performance penalty, we can implement search on
> IndexWriter's RAM buffer. This is the buffer that is filled in
> RAM as documents are indexed. Currently the RAM buffer is
> flushed to the underlying directory (usually disk) before being
> made searchable. 
> Todays Lucene based NRT systems must incur the cost of merging
> segments, which can slow indexing. 
> Michael Busch has good suggestions regarding how to handle deletes using max 
> doc ids.  
> https://issues.apache.org/jira/browse/LUCENE-2293?focusedCommentId=12841923&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12841923
> The area that isn't fully fleshed out is the terms dictionary,
> which needs to be sorted prior to queries executing. Currently
> IW implements a specialized hash table. Michael B has a
> suggestion here: 
> https://issues.apache.org/jira/browse/LUCENE-2293?focusedCommentId=12841915&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12841915

-- 
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-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org

Reply via email to