Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Index mapping and text analysis

% What needs to be done: Write from scratch
As part of planning how your incoming data might be transformed and enriched as it is ingested, you may want to customize how the data should be organized inside {{es}} and how text fields should be analyzed.

% GitHub issue: docs-projects#367
Refer to [Mapping](/manage-data/data-store/mapping.md) to learn about the dynamic mapping rules that Elasticsearch runs by default to identify the data types in your data and to store it in matching fields. You can also configure your own custom mappings to take full control over how your data is organized in the documents in an Elasticsarch index.

% Scope notes: This should be a stub page that makes it clear to the reader that next step in transforming/enriching data at ingest time is using index mapping and text analysis, and linking to where these concepts are documented in more detail (above in the The Elasticsearch data store section).
Refer to [Text analysis](/manage-data/data-store/text-analysis.md) to learn how to configure an analyzer to run on incoming text, in order to ensure that relevant documents are retrieved from text-based queries. You can opt to use one of several built-in analyzers, or create a custom analyzer for your specific use cases.
Loading