@@ -55,7 +55,7 @@ The information still needs to be searchable, but it’s okay if those queries a
55
55
56
56
[[glossary-cold-tier]] cold tier::
57
57
// tag::cold-tier-def[]
58
- A <<glossary-data-tier, data tier>> that contains nodes that hold time series data
58
+ A <<glossary-data-tier, data tier>> that contains nodes that hold time series data
59
59
that is accessed occasionally and not normally updated.
60
60
// end::cold-tier-def[]
61
61
@@ -67,7 +67,7 @@ A building block for constructing <<index-templates,index templates>> that speci
67
67
68
68
[[glossary-content-tier]] content tier::
69
69
// tag::content-tier-def[]
70
- A <<glossary-data-tier, data tier>> that contains nodes that handle the indexing and query load for
70
+ A <<glossary-data-tier, data tier>> that contains nodes that handle the indexing and query load for
71
71
content such as a product catalog.
72
72
// end::content-tier-def[]
73
73
@@ -207,7 +207,7 @@ Searching a frozen index is lower overhead than re-opening a closed index to ena
207
207
208
208
[[glossary-hidden-index]] hidden index ::
209
209
// tag::hidden-index-def[]
210
- An index that is excluded by default when you access indices using a wildcard expression.
210
+ An index that is excluded by default when you access indices using a wildcard expression.
211
211
You can specify the `expand_wildcards` parameter to include hidden indices.
212
212
Note that hidden indices _are_ included if the wildcard expression starts with a dot, for example `.watcher-history*`.
213
213
// end::hidden-index-def[]
@@ -220,8 +220,8 @@ In the hot phase, an index is actively updated and queried.
220
220
221
221
[[glossary-hot-tier]] hot tier::
222
222
// tag::hot-tier-def[]
223
- A <<glossary-data-tier, data tier>> that contains nodes that handle the indexing load
224
- for time series data such as logs or metrics and hold your most recent,
223
+ A <<glossary-data-tier, data tier>> that contains nodes that handle the indexing load
224
+ for time series data such as logs or metrics and hold your most recent,
225
225
most-frequently-accessed data.
226
226
// end::hot-tier-def[]
227
227
@@ -471,6 +471,15 @@ This value can be overridden by specifying a `routing` value at index
471
471
time, or a <<mapping-routing-field,routing
472
472
field>> in the <<glossary-mapping,mapping>>.
473
473
474
+ [[glossary-runtime-fields]] runtime field ::
475
+ // tag::runtime-fields-def[]
476
+ A runtime field is a field that is evaluated at query time. You access runtime
477
+ fields from the search API like any other field, and {es} sees runtime fields
478
+ no differently. You can define runtime fields in the
479
+ {ref}/runtime-mapping-fields.html[index mapping] or in the
480
+ {ref}/runtime-search-request.html[search request].
481
+ // end::runtime-fields-def[]
482
+
474
483
[[glossary-searchable-snapshot]] searchable snapshot ::
475
484
// tag::searchable-snapshot-def[]
476
485
A <<glossary-snapshot, snapshot>> of an index that has been mounted as a
@@ -548,8 +557,8 @@ from an ID.
548
557
549
558
[[glossary-system-index]] system index ::
550
559
// tag::system-index-def[]
551
- An index that contains configuration information or other data used internally by the system,
552
- such as the `.security` index.
560
+ An index that contains configuration information or other data used internally by the system,
561
+ such as the `.security` index.
553
562
The name of a system index is always prefixed with a dot.
554
563
You should not directly access or modify system indices.
555
564
// end::system-index-def[]
@@ -590,6 +599,6 @@ In the warm phase, an index is generally optimized for search and no longer upda
590
599
591
600
[[glossary-warm-tier]] warm tier::
592
601
// tag::warm-tier-def[]
593
- A <<glossary-data-tier, data tier>> that contains nodes that hold time series data
602
+ A <<glossary-data-tier, data tier>> that contains nodes that hold time series data
594
603
that is accessed less frequently and rarely needs to be updated.
595
604
// end::warm-tier-def[]
0 commit comments