summaryrefslogtreecommitdiff
path: root/docs/reference/search/request/index-boost.asciidoc
blob: 683fe910f5e6edbe3b679a8433d1b2cc6979dd4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[[search-request-index-boost]]
=== Index Boost

Allows to configure different boost level per index when searching
across more than one indices. This is very handy when hits coming from
one index matter more than hits coming from another index (think social
graph where each user has an index).

deprecated[5.2.0, This format is deprecated. Please use array format instead.]
[source,js]
--------------------------------------------------
GET /_search
{
    "indices_boost" : {
        "index1" : 1.4,
        "index2" : 1.3
    }
}
--------------------------------------------------
// CONSOLE
// TEST[setup:index_boost warning:Object format in indices_boost is deprecated, please use array format instead]

You can also specify it as an array to control the order of boosts.

[source,js]
--------------------------------------------------
GET /_search
{
    "indices_boost" : [
        { "alias1" : 1.4 },
        { "index*" : 1.3 }
    ]
}
--------------------------------------------------
// CONSOLE
// TEST[continued]

This is important when you use aliases or wildcard expression.
If multiple matches are found, the first match will be used.
For example, if an index is included in both `alias1` and `index*`, boost value of `1.4` is applied.