﻿---
title: Linear retriever
description: A retriever that normalizes and linearly combines the scores of other retrievers. Each entry in the retrievers array specifies the following parameters:...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers/linear-retriever
products:
  - Elasticsearch
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Linear retriever
A retriever that normalizes and linearly combines the scores of other retrievers.

## Parameters

<note>
  Either `query` or `retrievers` must be specified.
  Combining `query` and `retrievers` is not supported.
</note>

<definitions>
  <definition term="query Elastic Stack: Generally available since 9.1">
    (Optional, String)
    The query to use when using the [multi-field query format](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers#multi-field-query-format).
    This format automatically groups fields into **lexical** (text) and **semantic** (vector) categories. To ensure both categories contribute equally to the final score regardless of the number of fields, the retriever applies a two-level normalization formula:
    ```math
    Score_{total} = Normalizer(\sum_{s \in Semantic} Normalizer(Score_s)) + Normalizer(\sum_{l \in Lexical} Score_l)
    ```
  </definition>
  <definition term="fields Elastic Stack: Generally available since 9.1">
    (Optional, array of strings)
    The fields to query when using the [multi-field query format](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers#multi-field-query-format).
    Fields can include boost values using the `^` notation (e.g., `"field^2"`).
    If not specified, uses the index's default fields from the `index.query.default_field` index setting, which is `*` by default.
  </definition>
  <definition term="normalizer Elastic Stack: Generally available since 9.1">
    (Optional, String)
    The top-level normalizer to use when combining results.
    See [normalizers](#linear-retriever-normalizers) for supported values.
    Required when `query` is specified.
    When used with the [multi-field query format](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers#multi-field-query-format) (`query` parameter), normalizes scores per [field grouping](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers#multi-field-field-grouping).
    Otherwise this serves as the default normalizer for any sub-retriever that doesn't specify its own normalizer. Per-retriever normalizers always take precedence over the top-level normalizer. <applies-to>Elastic Stack: Generally available since 9.2</applies-to>
    <warning>
      Avoid using `none` as that will disable normalization and may bias the result set towards lexical matches.
      See [field grouping](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers#multi-field-field-grouping) for more information.
    </warning>
  </definition>
  <definition term="retrievers">
    (Optional, array of objects)
    A list of the sub-retrievers' configuration, that we will take into account and whose result sets we will merge through a weighted sum.
    Each configuration can have a different weight and normalization depending on the specified retriever.
    The final score is calculated using the following linear combination formula:
    ```math
    Score = \sum_{i} (weight_i \times Normalizer(Score_i))
    ```
  </definition>
  <definition term="rank_window_size">
    (Optional, integer)
    This value determines the size of the individual result sets per query. A higher value will improve result relevance at the cost of performance.
    The final ranked result set is pruned down to the search request’s [size](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search#search-size-param).
    `rank_window_size` must be greater than or equal to `size` and greater than or equal to `1`.
    Defaults to 10.
  </definition>
  <definition term="filter">
    (Optional, [query object or list of query objects](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/query-languages/querydsl))
    Applies the specified [boolean query filter](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/query-languages/query-dsl/query-dsl-bool-query) to all of the specified sub-retrievers, according to each retriever’s specifications.
  </definition>
</definitions>

Each entry in the `retrievers` array specifies the following parameters:
<definitions>
  <definition term="retriever">
    (Required, a `retriever` object)
    Specifies the retriever for which we will compute the top documents for. The retriever will produce `rank_window_size` results, which will later be merged based on the specified `weight` and `normalizer`.
  </definition>
  <definition term="weight">
    (Optional, float)
    The weight that each score of this retriever’s top docs will be multiplied with. Must be greater or equal to 0. Defaults to 1.0.
  </definition>
  <definition term="normalizer">
    (Optional, String)
    Specifies how the retriever's score will be normalized before applying the specified `weight`.
    See [normalizers](#linear-retriever-normalizers) for supported values.
    If not specified, uses the top-level `normalizer` (9.2+) or defaults to `none` (earlier versions).
  </definition>
</definitions>

See also [this hybrid search example](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers/retrievers-examples#retrievers-examples-linear-retriever) using a linear retriever on how to independently configure and apply normalizers to retrievers.

## Normalizers

The `linear` retriever supports the following normalizers:
- `none`: No normalization
- `minmax`: Normalizes scores based on the following formula:
  ```math
  score = \frac{score - min}{max - min}
  ```
- `l2_norm`: Normalizes scores using the L2 norm of the score values <applies-to>Elastic Stack: Generally available since 9.1</applies-to>


## Example

This example of a hybrid search weights KNN results five times more heavily than BM25 results in the final ranking, with a top-level normalizer applied to all retrievers.
```json

{
  "retriever": {
    "linear": {
      "retrievers": [
        {
          "retriever": {
            "knn": {
              "field": "title_vector",
              "query_vector": [0.1, 0.2, 0.3],
              "k": 10,
              "num_candidates": 100
            }
          },
          "weight": 5 <1> 
        },
        {
          "retriever": {
            "standard": {
              "query": {
                "match": {
                  "title": "elasticsearch"
                }
              }
            }
          },
          "weight": 1.5 <2> 
        }
      ],
      "normalizer": "minmax"
    }
  }
}
```

1. KNN query weighted 5x
2. BM25 query weighted 1.5x

In this example, the `minmax` normalizer is applied to both the kNN retriever and the standard retriever. The top-level normalizer serves as a default that can be overridden by individual sub-retrievers. When using the multi-field query format, the top-level normalizer is applied to all generated inner retrievers.
See also [this hybrid search example](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/retrievers/retrievers-examples#retrievers-examples-linear-retriever).