2015-08-17 06:47:14 -04:00
|
|
|
[[mapper-murmur3]]
|
|
|
|
=== Mapper Murmur3 Plugin
|
|
|
|
|
|
|
|
The mapper-murmur3 plugin provides the ability to compute hash of field values
|
|
|
|
at index-time and store them in the index. This can sometimes be helpful when
|
|
|
|
running cardinality aggregations on high-cardinality and large string fields.
|
|
|
|
|
2017-04-20 09:01:37 -04:00
|
|
|
:plugin_name: mapper-murmur3
|
|
|
|
include::install_remove.asciidoc[]
|
2015-08-17 06:47:14 -04:00
|
|
|
|
|
|
|
[[mapper-murmur3-usage]]
|
|
|
|
==== Using the `murmur3` field
|
|
|
|
|
|
|
|
The `murmur3` is typically used within a multi-field, so that both the original
|
|
|
|
value and its hash are stored in the index:
|
|
|
|
|
2019-09-09 13:38:14 -04:00
|
|
|
[source,console]
|
2015-08-17 06:47:14 -04:00
|
|
|
--------------------------
|
2020-07-27 15:58:26 -04:00
|
|
|
PUT my-index-000001
|
2015-08-17 06:47:14 -04:00
|
|
|
{
|
|
|
|
"mappings": {
|
2019-01-18 08:11:18 -05:00
|
|
|
"properties": {
|
|
|
|
"my_field": {
|
|
|
|
"type": "keyword",
|
|
|
|
"fields": {
|
|
|
|
"hash": {
|
|
|
|
"type": "murmur3"
|
2015-08-17 06:47:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
Such a mapping would allow to refer to `my_field.hash` in order to get hashes
|
|
|
|
of the values of the `my_field` field. This is only useful in order to run
|
|
|
|
`cardinality` aggregations:
|
|
|
|
|
2019-09-09 13:38:14 -04:00
|
|
|
[source,console]
|
2015-08-17 06:47:14 -04:00
|
|
|
--------------------------
|
|
|
|
# Example documents
|
2020-07-27 15:58:26 -04:00
|
|
|
PUT my-index-000001/_doc/1
|
2015-08-17 06:47:14 -04:00
|
|
|
{
|
|
|
|
"my_field": "This is a document"
|
|
|
|
}
|
|
|
|
|
2020-07-27 15:58:26 -04:00
|
|
|
PUT my-index-000001/_doc/2
|
2015-08-17 06:47:14 -04:00
|
|
|
{
|
|
|
|
"my_field": "This is another document"
|
|
|
|
}
|
|
|
|
|
2020-07-27 15:58:26 -04:00
|
|
|
GET my-index-000001/_search
|
2015-08-17 06:47:14 -04:00
|
|
|
{
|
|
|
|
"aggs": {
|
|
|
|
"my_field_cardinality": {
|
|
|
|
"cardinality": {
|
|
|
|
"field": "my_field.hash" <1>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
<1> Counting unique values on the `my_field.hash` field
|
|
|
|
|
|
|
|
Running a `cardinality` aggregation on the `my_field` field directly would
|
|
|
|
yield the same result, however using `my_field.hash` instead might result in
|
|
|
|
a speed-up if the field has a high-cardinality. On the other hand, it is
|
|
|
|
discouraged to use the `murmur3` field on numeric fields and string fields
|
|
|
|
that are not almost unique as the use of a `murmur3` field is unlikely to
|
|
|
|
bring significant speed-ups, while increasing the amount of disk space required
|
|
|
|
to store the index.
|