Re-structure collate option in PhraseSuggester to only collate on local shard.
Previously, collate feature would be executed on all shards of an index using the client, this leads to a deadlock when concurrent collate requests are run from the _search API, due to the fact that both the external request and internal collate requests use the same search threadpool. As phrase suggestions are generated from the terms of the local shard, in most cases the generated suggestion, which does not yield a hit for the collate query on the local shard would not yield a hit for collate query on non-local shards. Instead of using the client for collating suggestions, collate query is executed against the ContextIndexSearcher. This PR removes the ability to specify a preference for a collate query, as the collate query is only run on the local shard. closes #9377
This commit is contained in:
parent
af6b69e791
commit
7efc43db25
|
@ -163,20 +163,18 @@ can contain misspellings (See parameter descriptions below).
|
|||
|
||||
`collate`::
|
||||
Checks each suggestion against the specified `query` or `filter` to
|
||||
prune suggestions for which no matching docs exist in the index. Either
|
||||
a `query` or a `filter` must be specified, and it is run as a
|
||||
<<query-dsl-template-query,`template` query>>. The current suggestion is
|
||||
automatically made available as the `{{suggestion}}` variable, which
|
||||
should be used in your query/filter. You can still specify your own
|
||||
template `params` -- the `suggestion` value will be added to the
|
||||
variables you specify. You can specify a `preference` to control
|
||||
on which shards the query is executed (see <<search-request-preference>>).
|
||||
The default value is `_only_local`. Additionally, you can specify
|
||||
a `prune` to control if all phrase suggestions will be
|
||||
returned, when set to `true` the suggestions will have an additional
|
||||
option `collate_match`, which will be `true` if matching documents
|
||||
for the phrase was found, `false` otherwise. The default value for
|
||||
`prune` is `false`.
|
||||
prune suggestions for which no matching docs exist in the index.
|
||||
The collate query for a suggestion is run only on the local shard from which
|
||||
the suggestion has been generated from. Either a `query` or a `filter` must
|
||||
be specified, and it is run as a <<query-dsl-template-query,`template` query>>.
|
||||
The current suggestion is automatically made available as the `{{suggestion}}`
|
||||
variable, which should be used in your query/filter. You can still specify
|
||||
your own template `params` -- the `suggestion` value will be added to the
|
||||
variables you specify. Additionally, you can specify a `prune` to control
|
||||
if all phrase suggestions will be returned, when set to `true` the suggestions
|
||||
will have an additional option `collate_match`, which will be `true` if
|
||||
matching documents for the phrase was found, `false` otherwise.
|
||||
The default value for `prune` is `false`.
|
||||
|
||||
[source,js]
|
||||
--------------------------------------------------
|
||||
|
@ -199,8 +197,7 @@ curl -XPOST 'localhost:9200/_search' -d {
|
|||
}
|
||||
},
|
||||
"params": {"field_name" : "title"}, <3>
|
||||
"preference": "_primary", <4>
|
||||
"prune": true <5>
|
||||
"prune": true <4>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -212,8 +209,7 @@ curl -XPOST 'localhost:9200/_search' -d {
|
|||
of each suggestion.
|
||||
<3> An additional `field_name` variable has been specified in
|
||||
`params` and is used by the `match` query.
|
||||
<4> The default `preference` has been changed to `_primary`.
|
||||
<5> All suggestions will be returned with an extra `collate_match`
|
||||
<4> All suggestions will be returned with an extra `collate_match`
|
||||
option indicating whether the generated phrase matched any
|
||||
document.
|
||||
|
||||
|
|
|
@ -130,27 +130,26 @@ public class TransportSuggestAction extends TransportBroadcastOperationAction<Su
|
|||
protected ShardSuggestResponse shardOperation(ShardSuggestRequest request) {
|
||||
IndexService indexService = indicesService.indexServiceSafe(request.shardId().getIndex());
|
||||
IndexShard indexShard = indexService.shardSafe(request.shardId().id());
|
||||
final Engine.Searcher searcher = indexShard.acquireSearcher("suggest");
|
||||
ShardSuggestService shardSuggestService = indexShard.shardSuggestService();
|
||||
shardSuggestService.preSuggest();
|
||||
long startTime = System.nanoTime();
|
||||
XContentParser parser = null;
|
||||
try {
|
||||
try (Engine.Searcher searcher = indexShard.acquireSearcher("suggest")) {
|
||||
BytesReference suggest = request.suggest();
|
||||
if (suggest != null && suggest.length() > 0) {
|
||||
parser = XContentFactory.xContent(suggest).createParser(suggest);
|
||||
if (parser.nextToken() != XContentParser.Token.START_OBJECT) {
|
||||
throw new IllegalArgumentException("suggest content missing");
|
||||
}
|
||||
final SuggestionSearchContext context = suggestPhase.parseElement().parseInternal(parser, indexService.mapperService(), request.shardId().getIndex(), request.shardId().id());
|
||||
final Suggest result = suggestPhase.execute(context, searcher.reader());
|
||||
final SuggestionSearchContext context = suggestPhase.parseElement().parseInternal(parser, indexService.mapperService(),
|
||||
indexService.queryParserService(), request.shardId().getIndex(), request.shardId().id());
|
||||
final Suggest result = suggestPhase.execute(context, searcher.searcher());
|
||||
return new ShardSuggestResponse(request.shardId(), result);
|
||||
}
|
||||
return new ShardSuggestResponse(request.shardId(), new Suggest());
|
||||
} catch (Throwable ex) {
|
||||
throw new ElasticsearchException("failed to execute suggest", ex);
|
||||
} finally {
|
||||
searcher.close();
|
||||
if (parser != null) {
|
||||
parser.close();
|
||||
}
|
||||
|
|
|
@ -22,8 +22,9 @@ import java.io.IOException;
|
|||
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.index.mapper.MapperService;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
|
||||
public interface SuggestContextParser {
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService) throws IOException;
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService, IndexQueryParserService queryParserService) throws IOException;
|
||||
|
||||
}
|
|
@ -22,6 +22,7 @@ import org.apache.lucene.util.BytesRef;
|
|||
import org.elasticsearch.common.inject.Inject;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.index.mapper.MapperService;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
import org.elasticsearch.search.SearchParseElement;
|
||||
import org.elasticsearch.search.internal.SearchContext;
|
||||
import org.elasticsearch.search.suggest.SuggestionSearchContext.SuggestionContext;
|
||||
|
@ -44,11 +45,11 @@ public final class SuggestParseElement implements SearchParseElement {
|
|||
|
||||
@Override
|
||||
public void parse(XContentParser parser, SearchContext context) throws Exception {
|
||||
SuggestionSearchContext suggestionSearchContext = parseInternal(parser, context.mapperService(), context.shardTarget().index(), context.shardTarget().shardId());
|
||||
SuggestionSearchContext suggestionSearchContext = parseInternal(parser, context.mapperService(), context.queryParserService(), context.shardTarget().index(), context.shardTarget().shardId());
|
||||
context.suggest(suggestionSearchContext);
|
||||
}
|
||||
|
||||
public SuggestionSearchContext parseInternal(XContentParser parser, MapperService mapperService, String index, int shardId) throws IOException {
|
||||
public SuggestionSearchContext parseInternal(XContentParser parser, MapperService mapperService, IndexQueryParserService queryParserService, String index, int shardId) throws IOException {
|
||||
SuggestionSearchContext suggestionSearchContext = new SuggestionSearchContext();
|
||||
BytesRef globalText = null;
|
||||
String fieldName = null;
|
||||
|
@ -86,7 +87,7 @@ public final class SuggestParseElement implements SearchParseElement {
|
|||
throw new IllegalArgumentException("Suggester[" + fieldName + "] not supported");
|
||||
}
|
||||
final SuggestContextParser contextParser = suggesters.get(fieldName).getContextParser();
|
||||
suggestionContext = contextParser.parse(parser, mapperService);
|
||||
suggestionContext = contextParser.parse(parser, mapperService, queryParserService);
|
||||
}
|
||||
}
|
||||
if (suggestionContext != null) {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
package org.elasticsearch.search.suggest;
|
||||
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import org.apache.lucene.index.IndexReader;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
import org.apache.lucene.util.CharsRefBuilder;
|
||||
import org.elasticsearch.ElasticsearchException;
|
||||
import org.elasticsearch.common.component.AbstractComponent;
|
||||
|
@ -71,10 +71,10 @@ public class SuggestPhase extends AbstractComponent implements SearchPhase {
|
|||
if (suggest == null) {
|
||||
return;
|
||||
}
|
||||
context.queryResult().suggest(execute(suggest, context.searcher().getIndexReader()));
|
||||
context.queryResult().suggest(execute(suggest, context.searcher()));
|
||||
}
|
||||
|
||||
public Suggest execute(SuggestionSearchContext suggest, IndexReader reader) {
|
||||
public Suggest execute(SuggestionSearchContext suggest, IndexSearcher searcher) {
|
||||
try {
|
||||
CharsRefBuilder spare = new CharsRefBuilder();
|
||||
final List<Suggestion<? extends Entry<? extends Option>>> suggestions = new ArrayList<>(suggest.suggestions().size());
|
||||
|
@ -82,7 +82,7 @@ public class SuggestPhase extends AbstractComponent implements SearchPhase {
|
|||
for (Map.Entry<String, SuggestionSearchContext.SuggestionContext> entry : suggest.suggestions().entrySet()) {
|
||||
SuggestionSearchContext.SuggestionContext suggestion = entry.getValue();
|
||||
Suggester<SuggestionContext> suggester = suggestion.getSuggester();
|
||||
Suggestion<? extends Entry<? extends Option>> result = suggester.execute(entry.getKey(), suggestion, reader, spare);
|
||||
Suggestion<? extends Entry<? extends Option>> result = suggester.execute(entry.getKey(), suggestion, searcher, spare);
|
||||
if (result != null) {
|
||||
assert entry.getKey().equals(result.name);
|
||||
suggestions.add(result);
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.search.suggest;
|
||||
|
||||
import org.apache.lucene.index.IndexReader;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
import org.apache.lucene.util.CharsRefBuilder;
|
||||
|
||||
import java.io.IOException;
|
||||
|
@ -27,19 +27,20 @@ import java.io.IOException;
|
|||
public abstract class Suggester<T extends SuggestionSearchContext.SuggestionContext> {
|
||||
|
||||
protected abstract Suggest.Suggestion<? extends Suggest.Suggestion.Entry<? extends Suggest.Suggestion.Entry.Option>>
|
||||
innerExecute(String name, T suggestion, IndexReader indexReader, CharsRefBuilder spare) throws IOException;
|
||||
innerExecute(String name, T suggestion, IndexSearcher searcher, CharsRefBuilder spare) throws IOException;
|
||||
|
||||
public abstract String[] names();
|
||||
|
||||
public abstract SuggestContextParser getContextParser();
|
||||
|
||||
public Suggest.Suggestion<? extends Suggest.Suggestion.Entry<? extends Suggest.Suggestion.Entry.Option>>
|
||||
execute(String name, T suggestion, IndexReader indexReader, CharsRefBuilder spare) throws IOException {
|
||||
execute(String name, T suggestion, IndexSearcher searcher, CharsRefBuilder spare) throws IOException {
|
||||
// #3469 We want to ignore empty shards
|
||||
if (indexReader.numDocs() == 0) {
|
||||
|
||||
if (searcher.getIndexReader().numDocs() == 0) {
|
||||
return null;
|
||||
}
|
||||
return innerExecute(name, suggestion, indexReader, spare);
|
||||
return innerExecute(name, suggestion, searcher, spare);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@ import org.elasticsearch.common.xcontent.XContentFactory;
|
|||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.index.mapper.MapperService;
|
||||
import org.elasticsearch.index.mapper.core.CompletionFieldMapper;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
import org.elasticsearch.search.suggest.SuggestContextParser;
|
||||
import org.elasticsearch.search.suggest.SuggestionSearchContext;
|
||||
import org.elasticsearch.search.suggest.context.ContextMapping.ContextQuery;
|
||||
|
@ -48,7 +49,7 @@ public class CompletionSuggestParser implements SuggestContextParser {
|
|||
}
|
||||
|
||||
@Override
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService) throws IOException {
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService, IndexQueryParserService queryParserService) throws IOException {
|
||||
XContentParser.Token token;
|
||||
String fieldName = null;
|
||||
CompletionSuggestionContext suggestion = new CompletionSuggestionContext(completionSuggester);
|
||||
|
|
|
@ -23,6 +23,7 @@ import org.apache.lucene.index.LeafReader;
|
|||
import org.apache.lucene.index.LeafReaderContext;
|
||||
import org.apache.lucene.index.IndexReader;
|
||||
import org.apache.lucene.index.Terms;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
import org.apache.lucene.search.suggest.Lookup;
|
||||
import org.apache.lucene.util.CharsRefBuilder;
|
||||
import org.apache.lucene.util.CollectionUtil;
|
||||
|
@ -48,11 +49,11 @@ public class CompletionSuggester extends Suggester<CompletionSuggestionContext>
|
|||
|
||||
@Override
|
||||
protected Suggest.Suggestion<? extends Suggest.Suggestion.Entry<? extends Suggest.Suggestion.Entry.Option>> innerExecute(String name,
|
||||
CompletionSuggestionContext suggestionContext, IndexReader indexReader, CharsRefBuilder spare) throws IOException {
|
||||
CompletionSuggestionContext suggestionContext, IndexSearcher searcher, CharsRefBuilder spare) throws IOException {
|
||||
if (suggestionContext.mapper() == null || !(suggestionContext.mapper() instanceof CompletionFieldMapper)) {
|
||||
throw new ElasticsearchException("Field [" + suggestionContext.getField() + "] is not a completion suggest field");
|
||||
}
|
||||
|
||||
final IndexReader indexReader = searcher.getIndexReader();
|
||||
CompletionSuggestion completionSuggestion = new CompletionSuggestion(name, suggestionContext.getSize());
|
||||
spare.copyUTF8Bytes(suggestionContext.getText());
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ public final class NoisyChannelSpellChecker {
|
|||
}
|
||||
|
||||
public Result getCorrections(TokenStream stream, final CandidateGenerator generator,
|
||||
float maxErrors, int numCorrections, IndexReader reader, WordScorer wordScorer, BytesRef separator, float confidence, int gramSize) throws IOException {
|
||||
float maxErrors, int numCorrections, WordScorer wordScorer, float confidence, int gramSize) throws IOException {
|
||||
|
||||
final List<CandidateSet> candidateSetsList = new ArrayList<>();
|
||||
SuggestUtils.analyze(stream, new SuggestUtils.TokenConsumer() {
|
||||
|
@ -134,7 +134,7 @@ public final class NoisyChannelSpellChecker {
|
|||
public Result getCorrections(Analyzer analyzer, BytesRef query, CandidateGenerator generator,
|
||||
float maxErrors, int numCorrections, IndexReader reader, String analysisField, WordScorer scorer, float confidence, int gramSize) throws IOException {
|
||||
|
||||
return getCorrections(tokenStream(analyzer, query, new CharsRefBuilder(), analysisField), generator, maxErrors, numCorrections, reader, scorer, new BytesRef(" "), confidence, gramSize);
|
||||
return getCorrections(tokenStream(analyzer, query, new CharsRefBuilder(), analysisField), generator, maxErrors, numCorrections, scorer, confidence, gramSize);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@ import org.elasticsearch.common.xcontent.XContentParser.Token;
|
|||
import org.elasticsearch.index.analysis.ShingleTokenFilterFactory;
|
||||
import org.elasticsearch.index.mapper.FieldMapper;
|
||||
import org.elasticsearch.index.mapper.MapperService;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
import org.elasticsearch.script.CompiledScript;
|
||||
import org.elasticsearch.script.Script;
|
||||
import org.elasticsearch.script.ScriptContext;
|
||||
|
@ -49,8 +50,9 @@ public final class PhraseSuggestParser implements SuggestContextParser {
|
|||
}
|
||||
|
||||
@Override
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService) throws IOException {
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService, IndexQueryParserService queryParserService) throws IOException {
|
||||
PhraseSuggestionContext suggestion = new PhraseSuggestionContext(suggester);
|
||||
suggestion.setQueryParserService(queryParserService);
|
||||
XContentParser.Token token;
|
||||
String fieldName = null;
|
||||
boolean gramSizeSet = false;
|
||||
|
@ -159,8 +161,6 @@ public final class PhraseSuggestParser implements SuggestContextParser {
|
|||
} else {
|
||||
suggestion.setCollateFilterScript(compiledScript);
|
||||
}
|
||||
} else if ("preference".equals(fieldName)) {
|
||||
suggestion.setPreference(parser.text());
|
||||
} else if ("params".equals(fieldName)) {
|
||||
suggestion.setCollateScriptParams(parser.map());
|
||||
} else if ("prune".equals(fieldName)) {
|
||||
|
|
|
@ -23,22 +23,19 @@ import org.apache.lucene.analysis.TokenStream;
|
|||
import org.apache.lucene.index.IndexReader;
|
||||
import org.apache.lucene.index.MultiFields;
|
||||
import org.apache.lucene.index.Terms;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
import org.apache.lucene.search.spell.DirectSpellChecker;
|
||||
import org.apache.lucene.util.BytesRef;
|
||||
import org.apache.lucene.util.BytesRefBuilder;
|
||||
import org.apache.lucene.util.CharsRefBuilder;
|
||||
import org.elasticsearch.ElasticsearchException;
|
||||
import org.elasticsearch.action.search.MultiSearchRequestBuilder;
|
||||
import org.elasticsearch.action.search.MultiSearchResponse;
|
||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.client.Client;
|
||||
import org.elasticsearch.common.bytes.BytesReference;
|
||||
import org.elasticsearch.common.inject.Inject;
|
||||
import org.elasticsearch.common.lucene.Lucene;
|
||||
import org.elasticsearch.common.lucene.Lucene.EarlyTerminatingCollector;
|
||||
import org.elasticsearch.common.text.StringText;
|
||||
import org.elasticsearch.common.text.Text;
|
||||
import org.elasticsearch.index.query.QueryBuilders;
|
||||
import org.elasticsearch.index.query.QueryBuilders;
|
||||
import org.elasticsearch.index.query.ParsedQuery;
|
||||
import org.elasticsearch.script.CompiledScript;
|
||||
import org.elasticsearch.script.ExecutableScript;
|
||||
import org.elasticsearch.script.ScriptService;
|
||||
|
@ -58,12 +55,10 @@ import java.util.Map;
|
|||
public final class PhraseSuggester extends Suggester<PhraseSuggestionContext> {
|
||||
private final BytesRef SEPARATOR = new BytesRef(" ");
|
||||
private static final String SUGGESTION_TEMPLATE_VAR_NAME = "suggestion";
|
||||
private final Client client;
|
||||
private final ScriptService scriptService;
|
||||
|
||||
@Inject
|
||||
public PhraseSuggester(Client client, ScriptService scriptService) {
|
||||
this.client = client;
|
||||
public PhraseSuggester(ScriptService scriptService) {
|
||||
this.scriptService = scriptService;
|
||||
}
|
||||
|
||||
|
@ -76,11 +71,11 @@ public final class PhraseSuggester extends Suggester<PhraseSuggestionContext> {
|
|||
* - phonetic filters could be interesting here too for candidate selection
|
||||
*/
|
||||
@Override
|
||||
public Suggestion<? extends Entry<? extends Option>> innerExecute(String name, PhraseSuggestionContext suggestion,
|
||||
IndexReader indexReader, CharsRefBuilder spare) throws IOException {
|
||||
public Suggestion<? extends Entry<? extends Option>> innerExecute(String name, PhraseSuggestionContext suggestion, IndexSearcher searcher,
|
||||
CharsRefBuilder spare) throws IOException {
|
||||
double realWordErrorLikelihood = suggestion.realworldErrorLikelyhood();
|
||||
final PhraseSuggestion response = new PhraseSuggestion(name, suggestion.getSize());
|
||||
|
||||
final IndexReader indexReader = searcher.getIndexReader();
|
||||
List<PhraseSuggestionContext.DirectCandidateGenerator> generators = suggestion.generators();
|
||||
final int numGenerators = generators.size();
|
||||
final List<CandidateGenerator> gens = new ArrayList<>(generators.size());
|
||||
|
@ -103,31 +98,52 @@ public final class PhraseSuggester extends Suggester<PhraseSuggestionContext> {
|
|||
WordScorer wordScorer = suggestion.model().newScorer(indexReader, suggestTerms, suggestField, realWordErrorLikelihood, separator);
|
||||
Result checkerResult = checker.getCorrections(stream, new MultiCandidateGeneratorWrapper(suggestion.getShardSize(),
|
||||
gens.toArray(new CandidateGenerator[gens.size()])), suggestion.maxErrors(),
|
||||
suggestion.getShardSize(), indexReader,wordScorer , separator, suggestion.confidence(), suggestion.gramSize());
|
||||
suggestion.getShardSize(), wordScorer, suggestion.confidence(), suggestion.gramSize());
|
||||
|
||||
PhraseSuggestion.Entry resultEntry = buildResultEntry(suggestion, spare, checkerResult.cutoffScore);
|
||||
response.addTerm(resultEntry);
|
||||
|
||||
BytesRefBuilder byteSpare = new BytesRefBuilder();
|
||||
|
||||
MultiSearchResponse multiSearchResponse = collate(suggestion, checkerResult, byteSpare, spare);
|
||||
final boolean collateEnabled = multiSearchResponse != null;
|
||||
final boolean collatePrune = suggestion.collatePrune();
|
||||
|
||||
final BytesRefBuilder byteSpare = new BytesRefBuilder();
|
||||
final EarlyTerminatingCollector collector = Lucene.createExistsCollector();
|
||||
final CompiledScript collateScript;
|
||||
if (suggestion.getCollateQueryScript() != null) {
|
||||
collateScript = suggestion.getCollateQueryScript();
|
||||
} else if (suggestion.getCollateFilterScript() != null) {
|
||||
collateScript = suggestion.getCollateFilterScript();
|
||||
} else {
|
||||
collateScript = null;
|
||||
}
|
||||
final boolean collatePrune = (collateScript != null) && suggestion.collatePrune();
|
||||
for (int i = 0; i < checkerResult.corrections.length; i++) {
|
||||
boolean collateMatch = hasMatchingDocs(multiSearchResponse, i);
|
||||
Correction correction = checkerResult.corrections[i];
|
||||
spare.copyUTF8Bytes(correction.join(SEPARATOR, byteSpare, null, null));
|
||||
boolean collateMatch = true;
|
||||
if (collateScript != null) {
|
||||
// Checks if the template query collateScript yields any documents
|
||||
// from the index for a correction, collateMatch is updated
|
||||
final Map<String, Object> vars = suggestion.getCollateScriptParams();
|
||||
vars.put(SUGGESTION_TEMPLATE_VAR_NAME, spare.toString());
|
||||
final ExecutableScript executable = scriptService.executable(collateScript, vars);
|
||||
final BytesReference querySource = (BytesReference) executable.run();
|
||||
final ParsedQuery parsedQuery;
|
||||
if (suggestion.getCollateFilterScript() != null) {
|
||||
parsedQuery = suggestion.getQueryParserService().parse(
|
||||
QueryBuilders.constantScoreQuery(QueryBuilders.wrapperQuery(querySource)));
|
||||
} else {
|
||||
parsedQuery = suggestion.getQueryParserService().parse(querySource);
|
||||
}
|
||||
collateMatch = Lucene.exists(searcher, parsedQuery.query(), collector);
|
||||
}
|
||||
if (!collateMatch && !collatePrune) {
|
||||
continue;
|
||||
}
|
||||
Correction correction = checkerResult.corrections[i];
|
||||
spare.copyUTF8Bytes(correction.join(SEPARATOR, byteSpare, null, null));
|
||||
Text phrase = new StringText(spare.toString());
|
||||
Text highlighted = null;
|
||||
if (suggestion.getPreTag() != null) {
|
||||
spare.copyUTF8Bytes(correction.join(SEPARATOR, byteSpare, suggestion.getPreTag(), suggestion.getPostTag()));
|
||||
highlighted = new StringText(spare.toString());
|
||||
}
|
||||
if (collateEnabled && collatePrune) {
|
||||
if (collatePrune) {
|
||||
resultEntry.addOption(new Suggestion.Entry.Option(phrase, highlighted, (float) (correction.score), collateMatch));
|
||||
} else {
|
||||
resultEntry.addOption(new Suggestion.Entry.Option(phrase, highlighted, (float) (correction.score)));
|
||||
|
@ -144,67 +160,6 @@ public final class PhraseSuggester extends Suggester<PhraseSuggestionContext> {
|
|||
return new PhraseSuggestion.Entry(new StringText(spare.toString()), 0, spare.length(), cutoffScore);
|
||||
}
|
||||
|
||||
private MultiSearchResponse collate(PhraseSuggestionContext suggestion, Result checkerResult, BytesRefBuilder byteSpare, CharsRefBuilder spare) throws IOException {
|
||||
CompiledScript collateQueryScript = suggestion.getCollateQueryScript();
|
||||
CompiledScript collateFilterScript = suggestion.getCollateFilterScript();
|
||||
MultiSearchResponse multiSearchResponse = null;
|
||||
if (collateQueryScript != null) {
|
||||
multiSearchResponse = fetchMatchingDocCountResponses(checkerResult.corrections, collateQueryScript, false, suggestion, byteSpare, spare);
|
||||
} else if (collateFilterScript != null) {
|
||||
multiSearchResponse = fetchMatchingDocCountResponses(checkerResult.corrections, collateFilterScript, true, suggestion, byteSpare, spare);
|
||||
}
|
||||
return multiSearchResponse;
|
||||
}
|
||||
|
||||
private MultiSearchResponse fetchMatchingDocCountResponses(Correction[] corrections, CompiledScript collateScript,
|
||||
boolean isFilter, PhraseSuggestionContext suggestions,
|
||||
BytesRefBuilder byteSpare, CharsRefBuilder spare) throws IOException {
|
||||
Map<String, Object> vars = suggestions.getCollateScriptParams();
|
||||
MultiSearchResponse multiSearchResponse = null;
|
||||
MultiSearchRequestBuilder multiSearchRequestBuilder = client.prepareMultiSearch();
|
||||
boolean requestAdded = false;
|
||||
SearchRequestBuilder req;
|
||||
for (Correction correction : corrections) {
|
||||
spare.copyUTF8Bytes(correction.join(SEPARATOR, byteSpare, null, null));
|
||||
vars.put(SUGGESTION_TEMPLATE_VAR_NAME, spare.toString());
|
||||
ExecutableScript executable = scriptService.executable(collateScript, vars);
|
||||
BytesReference querySource = (BytesReference) executable.run();
|
||||
requestAdded = true;
|
||||
if (isFilter) {
|
||||
req = client.prepareSearch()
|
||||
.setPreference(suggestions.getPreference())
|
||||
.setQuery(QueryBuilders.constantScoreQuery(QueryBuilders.wrapperQuery(querySource)))
|
||||
.setSize(0)
|
||||
.setTerminateAfter(1);
|
||||
} else {
|
||||
req = client.prepareSearch()
|
||||
.setPreference(suggestions.getPreference())
|
||||
.setQuery(querySource)
|
||||
.setSize(0)
|
||||
.setTerminateAfter(1);
|
||||
}
|
||||
multiSearchRequestBuilder.add(req);
|
||||
}
|
||||
if (requestAdded) {
|
||||
multiSearchResponse = multiSearchRequestBuilder.get();
|
||||
}
|
||||
|
||||
return multiSearchResponse;
|
||||
}
|
||||
|
||||
private static boolean hasMatchingDocs(MultiSearchResponse multiSearchResponse, int index) {
|
||||
if (multiSearchResponse == null) {
|
||||
return true;
|
||||
}
|
||||
MultiSearchResponse.Item item = multiSearchResponse.getResponses()[index];
|
||||
if (!item.isFailure()) {
|
||||
SearchResponse resp = item.getResponse();
|
||||
return resp.getHits().totalHits() > 0;
|
||||
} else {
|
||||
throw new ElasticsearchException("Collate request failed: " + item.getFailureMessage());
|
||||
}
|
||||
}
|
||||
|
||||
ScriptService scriptService() {
|
||||
return scriptService;
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ import java.util.Map;
|
|||
|
||||
import org.apache.lucene.analysis.Analyzer;
|
||||
import org.apache.lucene.util.BytesRef;
|
||||
import org.elasticsearch.cluster.routing.Preference;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
import org.elasticsearch.script.CompiledScript;
|
||||
import org.elasticsearch.search.suggest.DirectSpellcheckerSettings;
|
||||
import org.elasticsearch.search.suggest.Suggester;
|
||||
|
@ -33,7 +33,7 @@ import org.elasticsearch.search.suggest.SuggestionSearchContext.SuggestionContex
|
|||
|
||||
class PhraseSuggestionContext extends SuggestionContext {
|
||||
private final BytesRef SEPARATOR = new BytesRef(" ");
|
||||
|
||||
private IndexQueryParserService queryParserService;
|
||||
private float maxErrors = 0.5f;
|
||||
private BytesRef separator = SEPARATOR;
|
||||
private float realworldErrorLikelihood = 0.95f;
|
||||
|
@ -45,7 +45,6 @@ class PhraseSuggestionContext extends SuggestionContext {
|
|||
private BytesRef postTag;
|
||||
private CompiledScript collateQueryScript;
|
||||
private CompiledScript collateFilterScript;
|
||||
private String preference = Preference.ONLY_LOCAL.type();
|
||||
private Map<String, Object> collateScriptParams = new HashMap<>(1);
|
||||
|
||||
private WordScorer.WordScorerFactory scorer;
|
||||
|
@ -113,6 +112,14 @@ class PhraseSuggestionContext extends SuggestionContext {
|
|||
return scorer;
|
||||
}
|
||||
|
||||
public void setQueryParserService(IndexQueryParserService queryParserService) {
|
||||
this.queryParserService = queryParserService;
|
||||
}
|
||||
|
||||
public IndexQueryParserService getQueryParserService() {
|
||||
return queryParserService;
|
||||
}
|
||||
|
||||
static class DirectCandidateGenerator extends DirectSpellcheckerSettings {
|
||||
private Analyzer preFilter;
|
||||
private Analyzer postFilter;
|
||||
|
@ -205,14 +212,6 @@ class PhraseSuggestionContext extends SuggestionContext {
|
|||
this.collateFilterScript = collateFilterScript;
|
||||
}
|
||||
|
||||
String getPreference() {
|
||||
return preference;
|
||||
}
|
||||
|
||||
void setPreference(String preference) {
|
||||
this.preference = preference;
|
||||
}
|
||||
|
||||
Map<String, Object> getCollateScriptParams() {
|
||||
return collateScriptParams;
|
||||
}
|
||||
|
|
|
@ -22,6 +22,7 @@ import java.io.IOException;
|
|||
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.index.mapper.MapperService;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
import org.elasticsearch.search.suggest.DirectSpellcheckerSettings;
|
||||
import org.elasticsearch.search.suggest.SuggestContextParser;
|
||||
import org.elasticsearch.search.suggest.SuggestUtils;
|
||||
|
@ -36,7 +37,7 @@ public final class TermSuggestParser implements SuggestContextParser {
|
|||
}
|
||||
|
||||
@Override
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService) throws IOException {
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService, IndexQueryParserService queryParserService) throws IOException {
|
||||
XContentParser.Token token;
|
||||
String fieldName = null;
|
||||
TermSuggestionContext suggestion = new TermSuggestionContext(suggester);
|
||||
|
|
|
@ -20,6 +20,7 @@ package org.elasticsearch.search.suggest.term;
|
|||
|
||||
import org.apache.lucene.index.IndexReader;
|
||||
import org.apache.lucene.index.Term;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
import org.apache.lucene.search.spell.DirectSpellChecker;
|
||||
import org.apache.lucene.search.spell.SuggestWord;
|
||||
import org.apache.lucene.util.BytesRef;
|
||||
|
@ -41,9 +42,9 @@ import java.util.List;
|
|||
public final class TermSuggester extends Suggester<TermSuggestionContext> {
|
||||
|
||||
@Override
|
||||
public TermSuggestion innerExecute(String name, TermSuggestionContext suggestion, IndexReader indexReader, CharsRefBuilder spare) throws IOException {
|
||||
public TermSuggestion innerExecute(String name, TermSuggestionContext suggestion, IndexSearcher searcher, CharsRefBuilder spare) throws IOException {
|
||||
DirectSpellChecker directSpellChecker = SuggestUtils.getDirectSpellChecker(suggestion.getDirectSpellCheckerSettings());
|
||||
|
||||
final IndexReader indexReader = searcher.getIndexReader();
|
||||
TermSuggestion response = new TermSuggestion(
|
||||
name, suggestion.getSize(), suggestion.getDirectSpellCheckerSettings().sort()
|
||||
);
|
||||
|
|
|
@ -18,11 +18,12 @@
|
|||
*/
|
||||
package org.elasticsearch.search.suggest;
|
||||
|
||||
import org.apache.lucene.index.IndexReader;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
import org.apache.lucene.util.CharsRefBuilder;
|
||||
import org.elasticsearch.common.text.StringText;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.index.mapper.MapperService;
|
||||
import org.elasticsearch.index.query.IndexQueryParserService;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Locale;
|
||||
|
@ -36,7 +37,7 @@ public class CustomSuggester extends Suggester<CustomSuggester.CustomSuggestions
|
|||
|
||||
// This is a pretty dumb implementation which returns the original text + fieldName + custom config option + 12 or 123
|
||||
@Override
|
||||
public Suggest.Suggestion<? extends Suggest.Suggestion.Entry<? extends Suggest.Suggestion.Entry.Option>> innerExecute(String name, CustomSuggestionsContext suggestion, IndexReader indexReader, CharsRefBuilder spare) throws IOException {
|
||||
public Suggest.Suggestion<? extends Suggest.Suggestion.Entry<? extends Suggest.Suggestion.Entry.Option>> innerExecute(String name, CustomSuggestionsContext suggestion, IndexSearcher searcher, CharsRefBuilder spare) throws IOException {
|
||||
// Get the suggestion context
|
||||
String text = suggestion.getText().utf8ToString();
|
||||
|
||||
|
@ -63,7 +64,7 @@ public class CustomSuggester extends Suggester<CustomSuggester.CustomSuggestions
|
|||
public SuggestContextParser getContextParser() {
|
||||
return new SuggestContextParser() {
|
||||
@Override
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService) throws IOException {
|
||||
public SuggestionSearchContext.SuggestionContext parse(XContentParser parser, MapperService mapperService, IndexQueryParserService queryParserService) throws IOException {
|
||||
Map<String, Object> options = parser.map();
|
||||
CustomSuggestionsContext suggestionContext = new CustomSuggestionsContext(CustomSuggester.this, options);
|
||||
suggestionContext.setField((String) options.get("field"));
|
||||
|
|
|
@ -1247,12 +1247,17 @@ public class SuggestSearchTests extends ElasticsearchIntegrationTest {
|
|||
// expected
|
||||
}
|
||||
|
||||
// collate request with prune set to true
|
||||
// collate query request with prune set to true
|
||||
PhraseSuggestionBuilder phraseSuggestWithParamsAndReturn = suggest.collateFilter(null).collateQuery(collateWithParams).collateParams(params).collatePrune(true);
|
||||
searchSuggest = searchSuggest("united states house of representatives elections in washington 2006", phraseSuggestWithParamsAndReturn);
|
||||
assertSuggestionSize(searchSuggest, 0, 10, "title");
|
||||
assertSuggestionPhraseCollateMatchExists(searchSuggest, "title", 2);
|
||||
|
||||
// collate filter request with prune set to true
|
||||
phraseSuggestWithParamsAndReturn = suggest.collateFilter(collateWithParams).collateQuery(null).collateParams(params).collatePrune(true);
|
||||
searchSuggest = searchSuggest("united states house of representatives elections in washington 2006", phraseSuggestWithParamsAndReturn);
|
||||
assertSuggestionSize(searchSuggest, 0, 10, "title");
|
||||
assertSuggestionPhraseCollateMatchExists(searchSuggest, "title", 2);
|
||||
}
|
||||
|
||||
protected Suggest searchSuggest(SuggestionBuilder<?>... suggestion) {
|
||||
|
|
Loading…
Reference in New Issue