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

org.elasticsearch.search.rank.RankCoordinatorContext Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
/*
 * 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 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 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.search.rank;

import org.elasticsearch.action.search.SearchPhaseController.SortedTopDocs;
import org.elasticsearch.action.search.SearchPhaseController.TopDocsStats;
import org.elasticsearch.search.query.QuerySearchResult;

import java.util.List;

/**
 * {@code RankContext} is a base class used to generate ranking
 * results on the coordinator and then set the rank for any
 * search hits that are found.
 */
public abstract class RankCoordinatorContext {

    protected final int size;
    protected final int from;
    protected final int windowSize;

    public RankCoordinatorContext(int size, int from, int windowSize) {
        this.size = size;
        this.from = from;
        this.windowSize = windowSize;
    }

    /**
     * This is used to pull information passed back from the shards as part
     * of {@link QuerySearchResult#getRankShardResult()} and return a {@link SortedTopDocs}
     * of the final rank results. Note that {@link TopDocsStats} is included so that
     * appropriate stats may be updated based on rank results. This is called at the end
     * of the query phase prior to the fetch phase.
     */
    public abstract SortedTopDocs rank(List querySearchResults, TopDocsStats topDocStats);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy