All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.search.facet.FacetPhase Maven / Gradle / Ivy

There is a newer version: 8.14.1
Show newest version
/*
 * Licensed to ElasticSearch and Shay Banon under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. ElasticSearch licenses this
 * file to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.elasticsearch.search.facet;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import org.apache.lucene.index.AtomicReaderContext;
import org.apache.lucene.search.*;
import org.elasticsearch.ElasticSearchException;
import org.elasticsearch.ElasticSearchIllegalStateException;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.lucene.docset.AllDocIdSet;
import org.elasticsearch.common.lucene.docset.ContextDocIdSet;
import org.elasticsearch.common.lucene.search.*;
import org.elasticsearch.search.SearchParseElement;
import org.elasticsearch.search.SearchPhase;
import org.elasticsearch.search.facet.nested.NestedFacetExecutor;
import org.elasticsearch.search.internal.SearchContext;
import org.elasticsearch.search.query.QueryPhaseExecutionException;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

/**
 *
 */
public class FacetPhase implements SearchPhase {

    private final FacetParseElement facetParseElement;

    private final FacetBinaryParseElement facetBinaryParseElement;

    @Inject
    public FacetPhase(FacetParseElement facetParseElement, FacetBinaryParseElement facetBinaryParseElement) {
        this.facetParseElement = facetParseElement;
        this.facetBinaryParseElement = facetBinaryParseElement;
    }

    @Override
    public Map parseElements() {
        return ImmutableMap.of("facets", facetParseElement, "facets_binary", facetBinaryParseElement, "facetsBinary", facetBinaryParseElement);
    }

    @Override
    public void preProcess(SearchContext context) {
        if (context.facets() != null && context.facets().hasQuery()) {
            for (SearchContextFacets.Entry entry : context.facets().entries()) {
                if (entry.isGlobal()) {
                    continue;
                }
                if (entry.getMode() == FacetExecutor.Mode.COLLECTOR) {
                    // TODO: We can pass the filter as param to collector method, then this filter wrapper logic can
                    // be moved to NestedFacetExecutor impl, the other implementations would just wrap it into
                    // FilteredCollector.
                    Collector collector = entry.getFacetExecutor().collector();

                    if (entry.getFilter() != null) {
                        if (collector instanceof NestedFacetExecutor.Collector) {
                            // We get rootDoc ids as hits in the collect method, so we need to first translate from
                            // rootDoc hit to nested doc hit and then apply filter.
                            collector = new NestedFacetExecutor.Collector((NestedFacetExecutor.Collector) collector, entry.getFilter());
                            // If we would first apply the filter on the rootDoc level and then translate it back to the
                            // nested docs we ignore the facet filter and all nested docs are passed to facet collector
                        } else {
                            collector = new FilteredCollector(collector, entry.getFilter());
                        }
                    }
                    context.searcher().addMainQueryCollector(collector);
                } else if (entry.getMode() == FacetExecutor.Mode.POST) {
                    context.searcher().enableMainDocIdSetCollector();
                } else {
                    throw new ElasticSearchIllegalStateException("what mode?");
                }
            }
        }
    }

    @Override
    public void execute(SearchContext context) throws ElasticSearchException {
        if (context.facets() == null) {
            return;
        }

        if (context.queryResult().facets() != null) {
            // no need to compute the facets twice, they should be computed on a per context basis
            return;
        }

        Map> filtersByCollector = null;
        List globalDocSets = null;
        for (SearchContextFacets.Entry entry : context.facets().entries()) {
            if (!entry.isGlobal()) {
                if (entry.getMode() == FacetExecutor.Mode.POST) {
                    FacetExecutor.Post post = entry.getFacetExecutor().post();
                    if (entry.getFilter() != null) {
                        if (post instanceof NestedFacetExecutor.Post) {
                            post = new NestedFacetExecutor.Post((NestedFacetExecutor.Post) post, entry.getFilter());
                        } else {
                            post = new FacetExecutor.Post.Filtered(post, entry.getFilter());
                        }
                    }
                    try {
                        post.executePost(context.searcher().mainDocIdSetCollector().docSets());
                    } catch (Exception e) {
                        throw new QueryPhaseExecutionException(context, "failed to execute facet [" + entry.getFacetName() + "]", e);
                    }
                }
            } else {
                if (entry.getMode() == FacetExecutor.Mode.POST) {
                    if (globalDocSets == null) {
                        // build global post entries, map a reader context to a live docs docIdSet
                        List leaves = context.searcher().getIndexReader().leaves();
                        globalDocSets = new ArrayList(leaves.size());
                        for (AtomicReaderContext leaf : leaves) {
                            globalDocSets.add(new ContextDocIdSet(
                                    leaf,
                                    BitsFilteredDocIdSet.wrap(new AllDocIdSet(leaf.reader().maxDoc()), leaf.reader().getLiveDocs())) // need to only include live docs
                            );
                        }
                    }
                    try {
                        FacetExecutor.Post post = entry.getFacetExecutor().post();
                        if (entry.getFilter() != null) {
                            if (post instanceof NestedFacetExecutor.Post) {
                                post = new NestedFacetExecutor.Post((NestedFacetExecutor.Post) post, entry.getFilter());
                            } else {
                                post = new FacetExecutor.Post.Filtered(post, entry.getFilter());
                            }
                        }
                        post.executePost(globalDocSets);
                    } catch (Exception e) {
                        throw new QueryPhaseExecutionException(context, "Failed to execute facet [" + entry.getFacetName() + "]", e);
                    }
                } else if (entry.getMode() == FacetExecutor.Mode.COLLECTOR) {
                    Filter filter = Queries.MATCH_ALL_FILTER;
                    Collector collector = entry.getFacetExecutor().collector();
                    if (entry.getFilter() != null) {
                        if (collector instanceof NestedFacetExecutor.Collector) {
                            collector = new NestedFacetExecutor.Collector((NestedFacetExecutor.Collector) collector, entry.getFilter());
                        } else {
                            collector = new FilteredCollector(collector, entry.getFilter());
                        }
                    }
                    if (filtersByCollector == null) {
                        filtersByCollector = Maps.newHashMap();
                    }
                    List list = filtersByCollector.get(filter);
                    if (list == null) {
                        list = new ArrayList();
                        filtersByCollector.put(filter, list);
                    }
                    list.add(collector);
                }
            }
        }

        // optimize the global collector based execution
        if (filtersByCollector != null) {
            // now, go and execute the filters->collector ones
            for (Map.Entry> entry : filtersByCollector.entrySet()) {
                Filter filter = entry.getKey();
                Query query = new XConstantScoreQuery(filter);
                Filter searchFilter = context.searchFilter(context.types());
                if (searchFilter != null) {
                    query = new XFilteredQuery(query, searchFilter);
                }
                try {
                    context.searcher().search(query, MultiCollector.wrap(entry.getValue().toArray(new Collector[entry.getValue().size()])));
                } catch (Exception e) {
                    throw new QueryPhaseExecutionException(context, "Failed to execute global facets", e);
                }
                for (Collector collector : entry.getValue()) {
                    if (collector instanceof XCollector) {
                        ((XCollector) collector).postCollection();
                    }
                }
            }
        }

        List facets = new ArrayList(context.facets().entries().size());
        for (SearchContextFacets.Entry entry : context.facets().entries()) {
            facets.add(entry.getFacetExecutor().buildFacet(entry.getFacetName()));
        }
        context.queryResult().facets(new InternalFacets(facets));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy