Elasticsearch Index Design
Design explicit index mappings from access patterns, review existing mappings for type and storage mistakes, and apply
corrections through a new index plus reindex when field types must change.
Environment Configuration
This skill executes Elasticsearch operations through the elastic CLI. If the
elastic CLI is not installed, tell the user what it is needed for. Do
not guess credentials, call the HTTP API directly, or attempt other workarounds.
This skill references operations in HTTP-shorthand form (e.g., GET /, GET /_cat/indices, GET /{index}/_mapping,
GET /{index}/_settings/index.mode, POST /_query). The Operations table at the end of this document
maps each shorthand to the equivalent elastic CLI command — always use the CLI rather than calling the HTTP API
directly.
Process
Gather access patterns per field. Before choosing types, list how each field is used. For every field capture:
- Search — full-text match, phrase, relevance scoring?
- Filter — exact term, terms set, prefix?
- Aggregate — terms, cardinality, histogram, stats?
- Sort — ascending/d descending in result sets?
- Retrieve only — returned in
_source but never queried?
The decision: classify each field into one primary access pattern (search, exact, numeric metric, date, boolean,
structured object, or retrieve-only). Missing access-pattern data is a blocker — ask the user rather than guessing.
Call GET / to confirm connectivity; when reviewing an existing index, call GET /{index}/_mapping to ground the
discussion in the current mapping.
Choose field types from access patterns. Map each field to the minimal type set that satisfies its pattern. Read
Field Type Decisions and
Multi-Field Patterns before proposing mappings.
Key judgments:
| Pattern |
Mapping |
| Full-text search only |
text (no keyword sub-field) |
| Filter / agg / sort only |
keyword (not text) |
| Full-text search and sort or aggregation |
text with fields.keyword multi-field |
| Decimal price or metric |
double, float, or scaled_float — not text or integer |
| Timestamp |
date |
| True/false flag |
boolean |
| Free-form key/value map with many distinct keys |
flattened — not dynamic object |
Multi-field rule: When a field must be searchable and sortable/aggregatable (e.g. product name), map it as
text with a keyword sub-field — search on name, sort and aggregate on name.keyword. Mapping as only text or
only keyword is wrong for that combined pattern.
Explicit mapping rule: For new indices, always define mappings explicitly with PUT /{index}. Do not rely on
dynamic mapping for production indices — the first document can lock in wrong types (strings as text, ambiguous
numbers as keyword).
Index settings: Set deliberate number_of_shards and number_of_replicas in the same PUT /{index} request
when the deployment allows it (Self-Managed / Elastic Cloud Hosted). On Serverless, omit shard and replica counts
(Elastic manages them); still supply explicit mappings. State chosen values or document that defaults apply.
Example — products index optimized for search plus sort/agg on name:
{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1
},
"mappings": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": { "type": "keyword", "ignore_above": 256 }
}
},
"price": { "type": "double" },
"created": { "type": "date" },
"in_stock": { "type": "boolean" }
}
}
}
Create with PUT /products passing the settings and mappings blocks. Verify with GET /products/_mapping.
Guard against mapping explosion and storage bloat. On high-volume indices, type mistakes multiply cost. Read
Mapping Explosion and Storage Bloat and apply these review checks:
- Analyzed-but-not-searched fields — Fields used only for filter and aggregation (
url, HTTP status_code,
tags, IDs) must be keyword, not text. text wastes space; aggregations on text require fielddata or a
.keyword sub-field that should not exist if the field is not searched.
message.keyword without ignore_above — A keyword sub-field on a large full-text body indexes the entire raw
string as one term. Flag this anti-pattern; remove the sub-field when only full-text search is needed, or add
ignore_above when a bounded exact-match sub-field is truly required.
- Dynamic free-form objects —
object with "dynamic": true on user-supplied key/value data with thousands of
distinct keys causes mapping explosion. Recommend flattened (or strict dynamic / allowlist strategy).
doc_values: false — On fields retrieved in hits but never sorted, aggregated, or filtered (e.g. display-only
session_id), set "doc_values": false on keyword to save disk at scale.
scaled_float — For metrics with bounded precision (e.g. response_time_ms), prefer scaled_float with an
appropriate scaling_factor over plain float/double when storage dominates.
Prefer "dynamic": "strict" on the root mapping unless unknown fields are an explicit requirement.
Apply design: create new index and reindex when types change. Elasticsearch cannot change an existing field's
type in place. When review finds wrong types (text→keyword, object→flattened, float→scaled_float, doc_values changes
on existing fields), state clearly that fixes require a new index and reindex — not a mapping update on the
live index.
Workflow for correcting an existing high-volume index such as events:
- Design the corrected mapping on a new index name (e.g.
events-v2) incorporating all fixes from steps 2–3.
- Create the destination with
PUT /events-v2 and the full corrected mappings (and settings where
applicable).
- Copy documents with
POST /_reindex — for large indices use wait_for_completion=false and track the task.
Source: { "index": "events" }, destination: { "index": "events-v2" }.
- Verify with
GET /events-v2/_count (compare to source count) and GET /events-v2/_mapping (confirm types).
- Cut over reads and writes (index alias swap or application config) after validation.
Example corrected excerpt for the events review pattern:
{
"mappings": {
"properties": {
"@timestamp": { "type": "date" },
"event_id": { "type": "keyword" },
"session_id": { "type": "keyword", "doc_values": false },
"url": { "type": "keyword" },
"status_code": { "type": "keyword" },
"response_time_ms": { "type": "scaled_float", "scaling_factor": 100 },
"tags": { "type": "keyword" },
"message": { "type": "text" },
"labels": { "type": "flattened" }
}
}
}
Do not attempt in-place mapping fixes for these type changes — they are rejected or leave data inconsistent. For
greenfield indices, a single PUT /{index} before first ingest avoids reindex entirely.
Review checklist
When the user supplies a mapping JSON and usage notes, walk this checklist in order:
- Match each field's type to its stated access pattern (see step 2).
- Flag
text on filter/agg-only fields; flag missing multi-fields where search and sort/agg share one logical field.
- Flag
message.keyword (or similar) without ignore_above on large analyzed text.
- Flag dynamic
object on high-cardinality free-form maps; recommend flattened.
- Propose retrieve-only and numeric storage optimizations (
doc_values: false, scaled_float).
- State that type changes require a new index and
POST /_reindex, then show the corrected mapping and reindex plan.
Examples
"Users search product names and also sort and aggregate on them" — one logical field, two access patterns, so use a
text field with a keyword multi-field:
{
"mappings": {
"properties": {
"product_name": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }
}
}
}
"A status field is only ever filtered and aggregated, never full-text searched" — use keyword, not text:
{ "mappings": { "properties": { "status": { "type": "keyword" } } } }
"Free-form labels object with unbounded keys" — avoid mapping explosion with flattened:
{ "mappings": { "properties": { "labels": { "type": "flattened" } } } }
Guidelines
- Minimal mapping — Map only what access patterns require; every sub-field and analyzed form adds indexed data.
- Never guess access patterns — Wrong type choice is expensive to fix at scale.
- Verify after create — Always confirm with
GET /{index}/_mapping; use GET /{index}/_count after reindex.
- Cross-skill boundary — Copying documents between indices is
POST /_reindex (see the reindex skill for slicing,
throttling, and task tracking). Loading files into a new index is bulk ingest, not index design.
Reference material
- Field Type Decisions — access-pattern-to-type table and common mistakes
- Multi-Field Patterns — text+keyword,
ignore_above, anti-patterns
- Mapping Explosion and Storage Bloat —
flattened, doc_values, dynamic objects
Operations
| HTTP API (shorthand) |
elastic CLI command |
GET / |
elastic es info |
GET /{index}/_mapping |
elastic es indices get-mapping --index '<index>' |
PUT /{index} |
elastic es indices create --index '<index>' --mappings '<json>' --settings '<json>' |
POST /_reindex |
elastic es reindex --source '<json>' --dest '<json>' |
POST /_reindex?wait_for_completion=false |
elastic es reindex --wait-for-completion false --source '<json>' --dest '<json>' |
GET /{index}/_count |
elastic es count --index '<index>' |
1---2name: elasticsearch-index-design3description: Design and review Elasticsearch index mappings for stated access patterns: correct field types, text+keyword multi-fields, doc_values tuning, mapping-explosion avoidance, and explicit shard settings. Use when creating a new index, reviewing a mapping for storage or query performance, fixing wrong field types, or when the user asks which type to use for search, filter, sort, or aggregation on a field.4---5
6# Elasticsearch Index Design
7
8Design explicit index mappings from access patterns, review existing mappings for type and storage mistakes, and apply
9corrections through a new index plus reindex when field types must change.
10
11<!-- begin-partial: preamble -->
12
13## Environment Configuration
14
15This skill executes Elasticsearch operations through the `elastic` CLI. If the
16[`elastic` CLI](https://github.com/elastic/cli#configuration) is not installed, tell the user what it is needed for. Do
17not guess credentials, call the HTTP API directly, or attempt other workarounds.
18
19This skill references operations in HTTP-shorthand form (e.g., `GET /`, `GET /_cat/indices`, `GET /{index}/_mapping`,
20`GET /{index}/_settings/index.mode`, `POST /_query`). The [Operations](#operations) table at the end of this document
21maps each shorthand to the equivalent `elastic` CLI command — always use the CLI rather than calling the HTTP API
22directly.
23
24<!-- end-partial: preamble -->
25
26## Process
27
281. **Gather access patterns per field.** Before choosing types, list how each field is used. For every field capture:
29 - **Search** — full-text match, phrase, relevance scoring?
30 - **Filter** — exact term, terms set, prefix?
31 - **Aggregate** — terms, cardinality, histogram, stats?
32 - **Sort** — ascending/d descending in result sets?
33 - **Retrieve only** — returned in `_source` but never queried?
34
35 The decision: classify each field into one primary access pattern (search, exact, numeric metric, date, boolean,
36 structured object, or retrieve-only). Missing access-pattern data is a blocker — ask the user rather than guessing.
37 Call `GET /` to confirm connectivity; when reviewing an existing index, call `GET /{index}/_mapping` to ground the
38 discussion in the current mapping.
39
402. **Choose field types from access patterns.** Map each field to the minimal type set that satisfies its pattern. Read
41 [Field Type Decisions](references/field-type-decisions.md) and
42 [Multi-Field Patterns](references/multi-field-patterns.md) before proposing mappings.
43
44 Key judgments:
45
46 | Pattern | Mapping |
47 | ----------------------------------------------- | ------------------------------------------------------------ |
48 | Full-text search only | `text` (no keyword sub-field) |
49 | Filter / agg / sort only | `keyword` (not `text`) |
50 | Full-text search **and** sort or aggregation | `text` with `fields.keyword` multi-field |
51 | Decimal price or metric | `double`, `float`, or `scaled_float` — not `text` or integer |
52 | Timestamp | `date` |
53 | True/false flag | `boolean` |
54 | Free-form key/value map with many distinct keys | `flattened` — not dynamic `object` |
55
56 **Multi-field rule:** When a field must be searchable **and** sortable/aggregatable (e.g. product `name`), map it as
57 `text` with a `keyword` sub-field — search on `name`, sort and aggregate on `name.keyword`. Mapping as only `text` or
58 only `keyword` is wrong for that combined pattern.
59
60 **Explicit mapping rule:** For new indices, always define mappings explicitly with `PUT /{index}`. Do not rely on
61 dynamic mapping for production indices — the first document can lock in wrong types (strings as `text`, ambiguous
62 numbers as `keyword`).
63
64 **Index settings:** Set deliberate `number_of_shards` and `number_of_replicas` in the same `PUT /{index}` request
65 when the deployment allows it (Self-Managed / Elastic Cloud Hosted). On Serverless, omit shard and replica counts
66 (Elastic manages them); still supply explicit mappings. State chosen values or document that defaults apply.
67
68 Example — `products` index optimized for search plus sort/agg on name:
69
70 ```json
71 {
72 "settings": {
73 "number_of_shards": 1,
74 "number_of_replicas": 1
75 },
76 "mappings": {
77 "properties": {
78 "name": {
79 "type": "text",
80 "fields": {
81 "keyword": { "type": "keyword", "ignore_above": 256 }
82 }
83 },
84 "price": { "type": "double" },
85 "created": { "type": "date" },
86 "in_stock": { "type": "boolean" }
87 }
88 }
89 }
90 ```
91
92 Create with `PUT /products` passing the `settings` and `mappings` blocks. Verify with `GET /products/_mapping`.
93
943. **Guard against mapping explosion and storage bloat.** On high-volume indices, type mistakes multiply cost. Read
95 [Mapping Explosion and Storage Bloat](references/mapping-explosion.md) and apply these review checks:
96 - **Analyzed-but-not-searched fields** — Fields used only for filter and aggregation (`url`, HTTP `status_code`,
97 `tags`, IDs) must be `keyword`, not `text`. `text` wastes space; aggregations on `text` require fielddata or a
98 `.keyword` sub-field that should not exist if the field is not searched.
99 - **`message.keyword` without `ignore_above`** — A keyword sub-field on a large full-text body indexes the entire raw
100 string as one term. Flag this anti-pattern; remove the sub-field when only full-text search is needed, or add
101 `ignore_above` when a bounded exact-match sub-field is truly required.
102 - **Dynamic free-form objects** — `object` with `"dynamic": true` on user-supplied key/value data with thousands of
103 distinct keys causes **mapping explosion**. Recommend `flattened` (or strict dynamic / allowlist strategy).
104 - **`doc_values: false`** — On fields retrieved in hits but never sorted, aggregated, or filtered (e.g. display-only
105 `session_id`), set `"doc_values": false` on `keyword` to save disk at scale.
106 - **`scaled_float`** — For metrics with bounded precision (e.g. `response_time_ms`), prefer `scaled_float` with an
107 appropriate `scaling_factor` over plain `float`/`double` when storage dominates.
108
109 Prefer `"dynamic": "strict"` on the root mapping unless unknown fields are an explicit requirement.
110
1114. **Apply design: create new index and reindex when types change.** Elasticsearch **cannot** change an existing field's
112 type in place. When review finds wrong types (text→keyword, object→flattened, float→scaled_float, doc_values changes
113 on existing fields), state clearly that fixes require a **new index** and **reindex** — not a mapping update on the
114 live index.
115
116 Workflow for correcting an existing high-volume index such as `events`:
117 1. **Design the corrected mapping** on a new index name (e.g. `events-v2`) incorporating all fixes from steps 2–3.
118 2. **Create the destination** with `PUT /events-v2` and the full corrected `mappings` (and `settings` where
119 applicable).
120 3. **Copy documents** with `POST /_reindex` — for large indices use `wait_for_completion=false` and track the task.
121 Source: `{ "index": "events" }`, destination: `{ "index": "events-v2" }`.
122 4. **Verify** with `GET /events-v2/_count` (compare to source count) and `GET /events-v2/_mapping` (confirm types).
123 5. **Cut over** reads and writes (index alias swap or application config) after validation.
124
125 Example corrected excerpt for the `events` review pattern:
126
127 ```json
128 {
129 "mappings": {
130 "properties": {
131 "@timestamp": { "type": "date" },
132 "event_id": { "type": "keyword" },
133 "session_id": { "type": "keyword", "doc_values": false },
134 "url": { "type": "keyword" },
135 "status_code": { "type": "keyword" },
136 "response_time_ms": { "type": "scaled_float", "scaling_factor": 100 },
137 "tags": { "type": "keyword" },
138 "message": { "type": "text" },
139 "labels": { "type": "flattened" }
140 }
141 }
142 }
143 ```
144
145 Do not attempt in-place mapping fixes for these type changes — they are rejected or leave data inconsistent. For
146 greenfield indices, a single `PUT /{index}` before first ingest avoids reindex entirely.
147
148## Review checklist
149
150When the user supplies a mapping JSON and usage notes, walk this checklist in order:
151
1521. Match each field's type to its stated access pattern (see step 2).
1532. Flag `text` on filter/agg-only fields; flag missing multi-fields where search and sort/agg share one logical field.
1543. Flag `message.keyword` (or similar) without `ignore_above` on large analyzed text.
1554. Flag dynamic `object` on high-cardinality free-form maps; recommend `flattened`.
1565. Propose retrieve-only and numeric storage optimizations (`doc_values: false`, `scaled_float`).
1576. State that type changes require a new index and `POST /_reindex`, then show the corrected mapping and reindex plan.
158
159## Examples
160
161**"Users search product names and also sort and aggregate on them"** — one logical field, two access patterns, so use a
162`text` field with a `keyword` multi-field:
163
164```json
165{
166 "mappings": {
167 "properties": {
168 "product_name": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }
169 }
170 }
171}
172```
173
174**"A `status` field is only ever filtered and aggregated, never full-text searched"** — use `keyword`, not `text`:
175
176```json
177{ "mappings": { "properties": { "status": { "type": "keyword" } } } }
178```
179
180**"Free-form `labels` object with unbounded keys"** — avoid mapping explosion with `flattened`:
181
182```json
183{ "mappings": { "properties": { "labels": { "type": "flattened" } } } }
184```
185
186## Guidelines
187
188- **Minimal mapping** — Map only what access patterns require; every sub-field and analyzed form adds indexed data.
189- **Never guess access patterns** — Wrong type choice is expensive to fix at scale.
190- **Verify after create** — Always confirm with `GET /{index}/_mapping`; use `GET /{index}/_count` after reindex.
191- **Cross-skill boundary** — Copying documents between indices is `POST /_reindex` (see the reindex skill for slicing,
192 throttling, and task tracking). Loading files into a new index is bulk ingest, not index design.
193
194## Reference material
195
196- [Field Type Decisions](references/field-type-decisions.md) — access-pattern-to-type table and common mistakes
197- [Multi-Field Patterns](references/multi-field-patterns.md) — text+keyword, `ignore_above`, anti-patterns
198- [Mapping Explosion and Storage Bloat](references/mapping-explosion.md) — `flattened`, `doc_values`, dynamic objects
199
200## Operations
201
202| HTTP API (shorthand) | `elastic` CLI command |
203| ------------------------------------------ | ------------------------------------------------------------------------------------- |
204| `GET /` | `elastic es info` |
205| `GET /{index}/_mapping` | `elastic es indices get-mapping --index '<index>'` |
206| `PUT /{index}` | `elastic es indices create --index '<index>' --mappings '<json>' --settings '<json>'` |
207| `POST /_reindex` | `elastic es reindex --source '<json>' --dest '<json>'` |
208| `POST /_reindex?wait_for_completion=false` | `elastic es reindex --wait-for-completion false --source '<json>' --dest '<json>'` |
209| `GET /{index}/_count` | `elastic es count --index '<index>'` |