-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Refactor SourceProvider creation to consistently use MappingLookup #128213
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e711269
Refactor SourceProvider creation to consistently use MappingLookup
jimczi 7e549d5
Update docs/changelog/128213.yaml
jimczi a5be44d
Merge branch 'main' into source_provider_ref
jimczi e722106
address review comment
jimczi 1a157a5
Merge branch 'main' into source_provider_ref
jimczi 207587d
Merge remote-tracking branch 'upstream/main' into source_provider_ref
jimczi ec220d4
iter
jimczi b69e817
source providers always force a sequential reader to load the fields
jimczi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| pr: 128213 | ||
| summary: Refactor `SourceProvider` creation to consistently use `MappingLookup` | ||
| area: Mapping | ||
| type: enhancement | ||
| issues: [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
server/src/main/java/org/elasticsearch/search/lookup/ConcurrentSegmentSourceProvider.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| /* | ||
| * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
| * or more contributor license agreements. Licensed under the "Elastic License | ||
| * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side | ||
| * Public License v 1"; you may not use this file except in compliance with, at | ||
| * your election, the "Elastic License 2.0", the "GNU Affero General Public | ||
| * License v3.0 only", or the "Server Side Public License, v 1". | ||
| */ | ||
|
|
||
| package org.elasticsearch.search.lookup; | ||
|
|
||
| import org.apache.lucene.index.LeafReaderContext; | ||
| import org.elasticsearch.common.util.concurrent.ConcurrentCollections; | ||
| import org.elasticsearch.index.fieldvisitor.LeafStoredFieldLoader; | ||
| import org.elasticsearch.index.fieldvisitor.StoredFieldLoader; | ||
| import org.elasticsearch.index.mapper.SourceLoader; | ||
|
|
||
| import java.io.IOException; | ||
| import java.util.Map; | ||
|
|
||
| /** | ||
| * A {@link SourceProvider} that loads _source from a concurrent search. | ||
| * | ||
| * NOTE: This is written under the assumption that individual segments are accessed by a single | ||
| * thread, even if separate segments may be searched concurrently. If we ever implement | ||
| * within-segment concurrency this will have to work entirely differently. | ||
| * **/ | ||
| class ConcurrentSegmentSourceProvider implements SourceProvider { | ||
| private final SourceLoader sourceLoader; | ||
| private final StoredFieldLoader storedFieldLoader; | ||
| private final Map<Object, Leaf> leaves = ConcurrentCollections.newConcurrentMap(); | ||
|
|
||
| ConcurrentSegmentSourceProvider(SourceLoader loader, boolean loadSource) { | ||
| this.sourceLoader = loader; | ||
| // we force a sequential reader here since it is used during query execution where documents are scanned sequentially | ||
| this.storedFieldLoader = StoredFieldLoader.create(loadSource, sourceLoader.requiredStoredFields(), true); | ||
| } | ||
|
|
||
| @Override | ||
| public Source getSource(LeafReaderContext ctx, int doc) throws IOException { | ||
| final Object id = ctx.id(); | ||
| var leaf = leaves.get(id); | ||
| if (leaf == null) { | ||
| leaf = new Leaf(sourceLoader.leaf(ctx.reader(), null), storedFieldLoader.getLoader(ctx, null)); | ||
| var existing = leaves.put(id, leaf); | ||
| assert existing == null : "unexpected source provider [" + existing + "]"; | ||
| } | ||
| return leaf.getSource(ctx, doc); | ||
| } | ||
|
|
||
| private static class Leaf implements SourceProvider { | ||
| private final SourceLoader.Leaf sourceLoader; | ||
| private final LeafStoredFieldLoader storedFieldLoader; | ||
| int doc = -1; | ||
| Source source = null; | ||
|
|
||
| private Leaf(SourceLoader.Leaf sourceLoader, LeafStoredFieldLoader storedFieldLoader) { | ||
| this.sourceLoader = sourceLoader; | ||
| this.storedFieldLoader = storedFieldLoader; | ||
| } | ||
|
|
||
| @Override | ||
| public Source getSource(LeafReaderContext ctx, int doc) throws IOException { | ||
| if (this.doc == doc) { | ||
| return source; | ||
| } | ||
| this.doc = doc; | ||
| storedFieldLoader.advanceTo(doc); | ||
| return source = sourceLoader.source(storedFieldLoader, doc); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
server/src/main/java/org/elasticsearch/search/lookup/StoredFieldSourceProvider.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.