mapper.asciidoc 911 B

12345678910111213141516171819202122232425262728293031
  1. [[mapper]]
  2. == Mapper Plugins
  3. Mapper plugins allow new field data types to be added to Elasticsearch.
  4. [discrete]
  5. === Core mapper plugins
  6. The core mapper plugins are:
  7. <<mapper-size>>::
  8. The mapper-size plugin provides the `_size` metadata field which, when enabled,
  9. indexes the size in bytes of the original
  10. {ref}/mapping-source-field.html[`_source`] field.
  11. <<mapper-murmur3>>::
  12. The mapper-murmur3 plugin allows hashes to be computed at index-time and stored
  13. in the index for later use with the `cardinality` aggregation.
  14. <<mapper-annotated-text>>::
  15. The annotated text plugin provides the ability to index text that is a
  16. combination of free-text and special markup that is typically used to identify
  17. items of interest such as people or organisations (see NER or Named Entity Recognition
  18. tools).
  19. include::mapper-size.asciidoc[]
  20. include::mapper-murmur3.asciidoc[]
  21. include::mapper-annotated-text.asciidoc[]