OpenSearch/docs/plugins/mapper.asciidoc
James Rodewig 988e8c8fc6
[DOCS] Swap [float] for [discrete] (#60134)
Changes instances of `[float]` in our docs for `[discrete]`.

Asciidoctor prefers the `[discrete]` tag for floating headings:
https://asciidoctor.org/docs/asciidoc-asciidoctor-diffs/#blocks
2020-07-23 12:42:33 -04:00

32 lines
907 B
Plaintext

[[mapper]]
== Mapper Plugins
Mapper plugins allow new field data types to be added to Elasticsearch.
[discrete]
=== Core mapper plugins
The core mapper plugins are:
<<mapper-size>>::
The mapper-size plugin provides the `_size` meta field which, when enabled,
indexes the size in bytes of the original
{ref}/mapping-source-field.html[`_source`] field.
<<mapper-murmur3>>::
The mapper-murmur3 plugin allows hashes to be computed at index-time and stored
in the index for later use with the `cardinality` aggregation.
<<mapper-annotated-text>>::
The annotated text plugin provides the ability to index text that is a
combination of free-text and special markup that is typically used to identify
items of interest such as people or organisations (see NER or Named Entity Recognition
tools).
include::mapper-size.asciidoc[]
include::mapper-murmur3.asciidoc[]
include::mapper-annotated-text.asciidoc[]