mapper.asciidoc 961 B

123456789101112131415161718192021222324252627282930
  1. [[mapper]]
  2. == Mapper Plugins
  3. Mapper plugins allow new field datatypes to be added to Elasticsearch.
  4. [float]
  5. === Core mapper plugins
  6. The core mapper plugins are:
  7. <<mapper-attachments>>::
  8. deprecated[5.0.0,The `mapper-attachments` plugin has been replaced by the <<ingest-attachment, `ingest-attachment`>> plugin]:
  9. The mapper-attachments integrates http://lucene.apache.org/tika/[Apache Tika] to provide a new field type `attachment`
  10. to allow indexing of documents such as PDFs and Microsoft Word.
  11. <<mapper-size>>::
  12. The mapper-size plugin provides the `_size` meta field which, when enabled,
  13. indexes the size in bytes of the original
  14. {ref}/mapping-source-field.html[`_source`] field.
  15. <<mapper-murmur3>>::
  16. The mapper-murmur3 plugin allows hashes to be computed at index-time and stored
  17. in the index for later use with the `cardinality` aggregation.
  18. include::mapper-attachments.asciidoc[]
  19. include::mapper-size.asciidoc[]
  20. include::mapper-murmur3.asciidoc[]