[
https://issues.apache.org/jira/browse/SOLR-2958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Martijn van Groningen updated SOLR-2958:
----------------------------------------
Attachment: SOLR-2958.patch
I tried to reproduce the bug, but I didn't run into the bug on the Solr
instance I have access to.
I also added a test case to the issue.
In this test case 720 documents are added. The dih configured with the
SolrEntityProcessor (with rows=500) imports these documents into another Solr
instance.
This test passes now.
Can you run this test in your environment?
> 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
> 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: [email protected]
For additional commands, e-mail: [email protected]