-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip non-competitive documents when sort by _doc with search after [LUCENE-9449] #10489
Comments
ASF subversion and git services (migrated from JIRA) Commit 9922067 in lucene-solr's branch refs/heads/master from Mayya Sharipova LUCENE-9449 Skip docs with _doc sort and "after" (#1725)
Relates to #10320 |
Tomas Eduardo Fernandez Lobbe (@tflobbe) (migrated from JIRA) I didn't look at this change in detail, but there are some failures in Jenkins that nay be related to this commit:
|
Mayya Sharipova (@mayya-sharipova) (migrated from JIRA) Thanks for informing me about this, and sorry for the trouble. I am working on fixing these test failures. |
Mayya Sharipova (@mayya-sharipova) (migrated from JIRA) The test failure would be fixed by this PR: apache/lucene-solr#1833 once it is merged. |
Mayya Sharipova (@mayya-sharipova) (migrated from JIRA) apache/lucene-solr#1833 has been merged, and the test doesn't fail anymore |
ASF subversion and git services (migrated from JIRA) Commit 7542168 in lucene-solr's branch refs/heads/branch_8x from Mayya Sharipova LUCENE-9449 Skip docs with _doc sort and "after" (#1725) (#1856)
Backport for #LUCENE-9449 |
ASF subversion and git services (migrated from JIRA) Commit 7542168 in lucene-solr's branch refs/heads/branch_8x from Mayya Sharipova LUCENE-9449 Skip docs with _doc sort and "after" (#1725) (#1856)
Backport for #LUCENE-9449 |
ASF subversion and git services (migrated from JIRA) Commit 64d9f8c in lucene's branch refs/heads/main from Mayya Sharipova #11059 DocComparator don't skip docs of same docID (#204) DocComparator should not skip docs with the same docID on multiple Because of the optimization introduced in LUCENE-9449, currently when This PR fixes this. Relates to LUCENE-9449 |
ASF subversion and git services (migrated from JIRA) Commit 64d9f8c in lucene's branch refs/heads/main from Mayya Sharipova #11059 DocComparator don't skip docs of same docID (#204) DocComparator should not skip docs with the same docID on multiple Because of the optimization introduced in LUCENE-9449, currently when This PR fixes this. Relates to LUCENE-9449 |
ASF subversion and git services (migrated from JIRA) Commit bdef1be in lucene-solr's branch refs/heads/branch_8x from Mayya Sharipova #11059 DocComparator don't skip docs of same docID (#2530) DocComparator should not skip docs with the same docID on multiple Because of the optimization introduced in LUCENE-9449, currently when This PR fixes this. Backport for #204 |
ASF subversion and git services (migrated from JIRA) Commit bdef1be in lucene-solr's branch refs/heads/branch_8x from Mayya Sharipova #11059 DocComparator don't skip docs of same docID (#2530) DocComparator should not skip docs with the same docID on multiple Because of the optimization introduced in LUCENE-9449, currently when This PR fixes this. Backport for #204 |
Enhance DocComparator to provide an iterator over competitive documents when search ing with "after" FieldDoc.
This iterator can quickly position on the desired "after" document, and skip all documents or even segments that contain documents before "after"
This is especially efficient when "after" is high.
Related to #10320
Migrated from LUCENE-9449 by Mayya Sharipova (@mayya-sharipova), resolved Sep 10 2020
Pull requests: apache/lucene-solr#1725
The text was updated successfully, but these errors were encountered: