This is a cache of https://www.elastic.co/guide/en/elasticsearch/reference/current/documents-indices.html. It is a snapshot of the page at 2024-10-10T00:57:01.397+0000.
Indices, documents, and fields | <strong>elasticsearch</strong> Guide [8.15] | Elastic

Indices, documents, and fields

edit

The index is the fundamental unit of storage in elasticsearch, a logical namespace for storing data that share similar characteristics. After you have elasticsearch deployed, you’ll get started by creating an index to store your data.

An index is a collection of documents uniquely identified by a name or an alias. This unique name is important because it’s used to target the index in search queries and other operations.

A closely related concept is a data stream. This index abstraction is optimized for append-only timestamped data, and is made up of hidden, auto-generated backing indices. If you’re working with timestamped data, we recommend the Elastic Observability solution for additional tools and optimized content.

Documents and fields

edit

elasticsearch serializes and stores data in the form of JSON documents. A document is a set of fields, which are key-value pairs that contain your data. Each document has a unique ID, which you can create or have elasticsearch auto-generate.

A simple elasticsearch document might look like this:

{
  "_index": "my-first-elasticsearch-index",
  "_id": "DyFpo5EBxE8fzbb95DOa",
  "_version": 1,
  "_seq_no": 0,
  "_primary_term": 1,
  "found": true,
  "_source": {
    "email": "john@smith.com",
    "first_name": "John",
    "last_name": "Smith",
    "info": {
      "bio": "Eco-warrior and defender of the weak",
      "age": 25,
      "interests": [
        "dolphins",
        "whales"
      ]
    },
    "join_date": "2024/05/01"
  }
}

Metadata fields

edit

An indexed document contains data and metadata. Metadata fields are system fields that store information about the documents. In elasticsearch, metadata fields are prefixed with an underscore. For example, the following fields are metadata fields:

  • _index: The name of the index where the document is stored.
  • _id: The document’s ID. IDs must be unique per index.

Mappings and data types

edit

Each index has a mapping or schema for how the fields in your documents are indexed. A mapping defines the data type for each field, how the field should be indexed, and how it should be stored. When adding documents to elasticsearch, you have two options for mappings:

  • Dynamic mapping: Let elasticsearch automatically detect the data types and create the mappings for you. Dynamic mapping helps you get started quickly, but might yield suboptimal results for your specific use case due to automatic field type inference.
  • Explicit mapping: Define the mappings up front by specifying data types for each field. Recommended for production use cases, because you have full control over how your data is indexed to suit your specific use case.

You can use a combination of dynamic and explicit mapping on the same index. This is useful when you have a mix of known and unknown fields in your data.