percolator: The query parse context should be fetched from the IndexQueryParseService
instead of maintaining a thread local cache in the PercolatorQueriesRegistry. Before PercolatorQueriesRegistry had its own cache, because all the queries had to forcefully opt out of caching. Nowadays in master small segments are never cached by the query cache, so the reason for the dedicated cache is no longer valid.
This commit is contained in:
parent
55c33b29f6
commit
07090b8ee8
|
@ -23,7 +23,6 @@ import org.apache.lucene.index.Term;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
import org.apache.lucene.search.TermQuery;
|
import org.apache.lucene.search.TermQuery;
|
||||||
import org.apache.lucene.util.BytesRef;
|
import org.apache.lucene.util.BytesRef;
|
||||||
import org.apache.lucene.util.CloseableThreadLocal;
|
|
||||||
import org.elasticsearch.ElasticsearchException;
|
import org.elasticsearch.ElasticsearchException;
|
||||||
import org.elasticsearch.common.bytes.BytesReference;
|
import org.elasticsearch.common.bytes.BytesReference;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
@ -85,13 +84,6 @@ public class PercolatorQueriesRegistry extends AbstractIndexShardComponent imple
|
||||||
|
|
||||||
private boolean mapUnmappedFieldsAsString;
|
private boolean mapUnmappedFieldsAsString;
|
||||||
|
|
||||||
private CloseableThreadLocal<QueryParseContext> cache = new CloseableThreadLocal<QueryParseContext>() {
|
|
||||||
@Override
|
|
||||||
protected QueryParseContext initialValue() {
|
|
||||||
return new QueryParseContext(shardId.index(), queryParserService);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
public PercolatorQueriesRegistry(ShardId shardId, @IndexSettings Settings indexSettings, IndexQueryParserService queryParserService,
|
public PercolatorQueriesRegistry(ShardId shardId, @IndexSettings Settings indexSettings, IndexQueryParserService queryParserService,
|
||||||
ShardIndexingService indexingService, IndicesLifecycle indicesLifecycle, MapperService mapperService,
|
ShardIndexingService indexingService, IndicesLifecycle indicesLifecycle, MapperService mapperService,
|
||||||
IndexFieldDataService indexFieldDataService, ShardPercolateService shardPercolateService) {
|
IndexFieldDataService indexFieldDataService, ShardPercolateService shardPercolateService) {
|
||||||
|
@ -197,7 +189,7 @@ public class PercolatorQueriesRegistry extends AbstractIndexShardComponent imple
|
||||||
if (type != null) {
|
if (type != null) {
|
||||||
QueryParseContext.setTypesWithPrevious(new String[]{type});
|
QueryParseContext.setTypesWithPrevious(new String[]{type});
|
||||||
}
|
}
|
||||||
QueryParseContext context = cache.get();
|
QueryParseContext context = queryParserService.getParseContext();
|
||||||
try {
|
try {
|
||||||
context.reset(parser);
|
context.reset(parser);
|
||||||
// This means that fields in the query need to exist in the mapping prior to registering this query
|
// This means that fields in the query need to exist in the mapping prior to registering this query
|
||||||
|
|
Loading…
Reference in New Issue