You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Martijn van Groningen (Commented) (JIRA)" <ji...@apache.org> on 2011/12/09 19:28:40 UTC

[jira] [Commented] (SOLR-2958) SolrEntityProcessor prematurely ending when performing doQuery()

    [ https://issues.apache.org/jira/browse/SOLR-2958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13166401#comment-13166401 ] 

Martijn van Groningen commented on SOLR-2958:
---------------------------------------------

Does this affect the code committed with SOLR-1499?
You set the affect versions to 3.2, so I'm not sure.
                
> 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
>
> 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-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org