2015-08-06 11:24:29 -04:00
|
|
|
|
[[similarity]]
|
|
|
|
|
=== `similarity`
|
|
|
|
|
|
|
|
|
|
Elasticsearch allows you to configure a scoring algorithm or _similarity_ per
|
|
|
|
|
field. The `similarity` setting provides a simple way of choosing a similarity
|
2017-03-28 10:17:23 -04:00
|
|
|
|
algorithm other than the default `BM25`, such as `TF/IDF`.
|
2015-08-06 11:24:29 -04:00
|
|
|
|
|
2016-03-18 12:01:27 -04:00
|
|
|
|
Similarities are mostly useful for <<text,`text`>> fields, but can also apply
|
|
|
|
|
to other field types.
|
2015-08-06 11:24:29 -04:00
|
|
|
|
|
2016-01-20 03:32:51 -05:00
|
|
|
|
Custom similarities can be configured by tuning the parameters of the built-in
|
2015-08-06 11:24:29 -04:00
|
|
|
|
similarities. For more details about this expert options, see the
|
|
|
|
|
<<index-modules-similarity,similarity module>>.
|
|
|
|
|
|
|
|
|
|
The only similarities which can be used out of the box, without any further
|
|
|
|
|
configuration are:
|
|
|
|
|
|
|
|
|
|
`BM25`::
|
2016-10-27 04:32:01 -04:00
|
|
|
|
The Okapi BM25 algorithm. The algorithm used by default in Elasticsearch and Lucene.
|
2016-02-09 05:07:32 -05:00
|
|
|
|
See {defguide}/pluggable-similarites.html[Pluggable Similarity Algorithms]
|
2015-08-06 11:24:29 -04:00
|
|
|
|
for more information.
|
|
|
|
|
|
2016-10-27 04:32:01 -04:00
|
|
|
|
`classic`::
|
|
|
|
|
The TF/IDF algorithm which used to be the default in Elasticsearch and
|
|
|
|
|
Lucene. See {defguide}/practical-scoring-function.html[Lucene’s Practical Scoring Function]
|
|
|
|
|
for more information.
|
|
|
|
|
|
2017-03-28 10:17:23 -04:00
|
|
|
|
`boolean`::
|
|
|
|
|
A simple boolean similarity, which is used when full-text ranking is not needed
|
|
|
|
|
and the score should only be based on whether the query terms match or not.
|
|
|
|
|
Boolean similarity gives terms a score equal to their query boost.
|
|
|
|
|
|
2015-08-06 11:24:29 -04:00
|
|
|
|
|
|
|
|
|
The `similarity` can be set on the field level when a field is first created,
|
|
|
|
|
as follows:
|
|
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
|
--------------------------------------------------
|
2019-01-14 16:08:01 -05:00
|
|
|
|
PUT my_index?include_type_name=true
|
2015-08-06 11:24:29 -04:00
|
|
|
|
{
|
|
|
|
|
"mappings": {
|
2017-12-14 11:47:53 -05:00
|
|
|
|
"_doc": {
|
2015-08-06 11:24:29 -04:00
|
|
|
|
"properties": {
|
|
|
|
|
"default_field": { <1>
|
2016-03-18 12:01:27 -04:00
|
|
|
|
"type": "text"
|
2015-08-06 11:24:29 -04:00
|
|
|
|
},
|
2017-03-28 10:17:23 -04:00
|
|
|
|
"boolean_sim_field": {
|
|
|
|
|
"type": "text",
|
2018-04-03 10:45:25 -04:00
|
|
|
|
"similarity": "boolean" <2>
|
2015-08-06 11:24:29 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
--------------------------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
|
// CONSOLE
|
2016-10-27 04:32:01 -04:00
|
|
|
|
<1> The `default_field` uses the `BM25` similarity.
|
2018-04-03 10:45:25 -04:00
|
|
|
|
<2> The `boolean_sim_field` uses the `boolean` similarity.
|