ποΈ Creating and Managing Indices
An index is where your documents live. It defines how data is stored, searched, and analyzed.
Letβs go through the main methods to create and manage indices.
π Method 1: Using Dev Tools (Kibana Console)β
Open Kibana β Dev Tools and paste the following:
PUT hcm-employees
{
"mappings": {
"properties": {
"name": { "type": "text" },
"position": { "type": "text" },
"email": { "type": "keyword" },
"location": { "type": "geo_point" },
"timestamp": { "type": "date" }
}
}
}
β
This creates an index called hcm-employees
with fields for name, email, location, etc.
π Method 2: Using the REST APIβ
You can create an index from any HTTP client, like curl
, Postman, or from your app:
curl -X PUT https://es.healthcare-manufaktur.de/hcm-employees \
-H 'Content-Type: application/json' \
-d '{
"mappings": {
"properties": {
"name": { "type": "text" },
"position": { "type": "text" },
"email": { "type": "keyword" },
"location": { "type": "geo_point" },
"timestamp": { "type": "date" }
}
}
}'
π οΈ Updating Mappingsβ
If your index already exists, you can add new fields, but cannot change the type of existing ones:
PUT hcm-employees/_mapping
{
"properties": {
"department": { "type": "keyword" }
}
}
π« You cannot change an existing field type (e.g., from text
to keyword
). Youβll need to reindex for that.
ποΈ Deleting an Indexβ
To completely delete an index and all its documents:
DELETE hcm-employees
π Use with caution! This action is irreversible.
π Listing All Indicesβ
To list all indices in your Elasticsearch cluster:
GET _cat/indices?v
You'll see index names, document counts, disk usage, and health status.
π Make Your Index Usable in Kibanaβ
Before you can search or visualize data:
- Go to Stack Management β Data Views
- Click Create Data View
- Enter a pattern like:
hcm-employees*
- Choose the
timestamp
field (if your docs include dates)
Now your index is ready to be explored in Discover or used in Dashboards!
β Next Up: Adding Dataβ
Now that you know how to create indices, letβs learn how to:
- Add documents
- Update fields
- Use bulk imports
β‘οΈ Head over to the "Adding and Updating Documents" page next!