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

Andrew Gunther closed SOLR-2958.
--------------------------------

       Resolution: Fixed
    Fix Version/s: 3.6

trunk patch of SOLR 1499 provided refactoring which resolved the problem
                
> SolrEntityProcessor prematurely ending when performing doQuery()
> ----------------------------------------------------------------
>
>                 Key: SOLR-2958
>                 URL: https://issues.apache.org/jira/browse/SOLR-2958
>             Project: Solr
>          Issue Type: Bug
>          Components: contrib - DataImportHandler
>    Affects Versions: 3.2
>            Reporter: Andrew Gunther
>             Fix For: 3.6
>
>         Attachments: SOLR-2958.patch
>
>
> from my memory...
> doQuery() method is incorrectly setting finished = true; during the condition 
> below..
> Scenario:
> numFound=720
> rows=500
> error:last 220 records are not returned.
> Replacing query.getStart() (which is essentially 500 + 500 > 720 => TRUE) 
> with 1 has worked for us.
>     if (context.isRootEntity()) {
>       // only check the numFound end condition if we're the root entity, 
> otherwise the query could be changing each time
>      // if (currentRow + query.getStart() > numFound) {
>            if ((currentRow + 1 > numFound) && (numFound > 0)) {      
>         finished = true;
>         return;
>       }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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

Reply via email to