* [DOCS] Add system & hidden indices definitions. (#64834) * [DOCS] Add system & hidden indices definitions. * Update docs/reference/glossary.asciidoc * Update docs/reference/glossary.asciidoc Co-authored-by: Lisa Cawley <lcawley@elastic.co> * Update docs/reference/glossary.asciidoc * Update docs/reference/glossary.asciidoc Co-authored-by: Lisa Cawley <lcawley@elastic.co> * [DOCS] Add data tier defs (#64838) * [DOCS] Add data tier defs * Add hot tier def Co-authored-by: Lisa Cawley <lcawley@elastic.co> Co-authored-by: Lisa Cawley <lcawley@elastic.co>
This commit is contained in:
parent
5893d51d42
commit
45ec4d7f5b
|
@ -53,12 +53,24 @@ In the cold phase, an index is no longer updated and seldom queried.
|
||||||
The information still needs to be searchable, but it’s okay if those queries are slower.
|
The information still needs to be searchable, but it’s okay if those queries are slower.
|
||||||
// end::cold-phase-def[]
|
// end::cold-phase-def[]
|
||||||
|
|
||||||
|
[[glossary-cold-tier]] cold tier::
|
||||||
|
// tag::cold-tier-def[]
|
||||||
|
A <<glossary-data-tier, data tier>> that contains nodes that hold time series data
|
||||||
|
that is accessed occasionally and not normally updated.
|
||||||
|
// end::cold-tier-def[]
|
||||||
|
|
||||||
[[glossary-component-template]] component template ::
|
[[glossary-component-template]] component template ::
|
||||||
// tag::component-template-def[]
|
// tag::component-template-def[]
|
||||||
A building block for constructing <<indices-templates,index templates>> that specifies index
|
A building block for constructing <<indices-templates,index templates>> that specifies index
|
||||||
<<mapping,mappings>>, <<index-modules-settings,settings>>, and <<indices-aliases,aliases>>.
|
<<mapping,mappings>>, <<index-modules-settings,settings>>, and <<indices-aliases,aliases>>.
|
||||||
// end::component-template-def[]
|
// end::component-template-def[]
|
||||||
|
|
||||||
|
[[glossary-content-tier]] content tier::
|
||||||
|
// tag::content-tier-def[]
|
||||||
|
A <<glossary-data-tier, data tier>> that contains nodes that handle the indexing and query load for
|
||||||
|
content such as a product catalog.
|
||||||
|
// end::content-tier-def[]
|
||||||
|
|
||||||
[[glossary-ccr]] {ccr} (CCR)::
|
[[glossary-ccr]] {ccr} (CCR)::
|
||||||
// tag::ccr-def[]
|
// tag::ccr-def[]
|
||||||
A feature that enables you to replicate indices in remote clusters to your
|
A feature that enables you to replicate indices in remote clusters to your
|
||||||
|
@ -84,6 +96,13 @@ See {ref}/data-streams.html[Data streams].
|
||||||
// end::data-stream-def[]
|
// end::data-stream-def[]
|
||||||
--
|
--
|
||||||
|
|
||||||
|
[[glossary-data-tier]] data tier::
|
||||||
|
// tag::data-tier-def[]
|
||||||
|
A collection of nodes with the same data role that typically share the same hardware profile.
|
||||||
|
See <<glossary-content-tier, content tier>>, <<glossary-hot-tier, hot tier>>, <<glossary-warm-tier, warm tier>>,
|
||||||
|
<<glossary-cold-tier, cold tier>>.
|
||||||
|
// end::data-tier-def[]
|
||||||
|
|
||||||
[[glossary-delete-phase]] delete phase ::
|
[[glossary-delete-phase]] delete phase ::
|
||||||
// tag::delete-phase-def[]
|
// tag::delete-phase-def[]
|
||||||
The last possible phase in the <<glossary-index-lifecycle,index lifecycle>>.
|
The last possible phase in the <<glossary-index-lifecycle,index lifecycle>>.
|
||||||
|
@ -178,12 +197,26 @@ Frozen indices use a memory-efficient shard implementation and throttle searches
|
||||||
Searching a frozen index is lower overhead than re-opening a closed index to enable searching.
|
Searching a frozen index is lower overhead than re-opening a closed index to enable searching.
|
||||||
// end::frozen-index-def[]
|
// end::frozen-index-def[]
|
||||||
|
|
||||||
|
[[glossary-hidden-index]] hidden index ::
|
||||||
|
// tag::hidden-index-def[]
|
||||||
|
An index that is excluded by default when you access indices using a wildcard expression.
|
||||||
|
You can specify the `expand_wildcards` parameter to include hidden indices.
|
||||||
|
Note that hidden indices _are_ included if the wildcard expression starts with a dot, for example `.watcher-history*`.
|
||||||
|
// end::hidden-index-def[]
|
||||||
|
|
||||||
[[glossary-hot-phase]] hot phase ::
|
[[glossary-hot-phase]] hot phase ::
|
||||||
// tag::hot-phase-def[]
|
// tag::hot-phase-def[]
|
||||||
The first possible phase in the <<glossary-index-lifecycle,index lifecycle>>.
|
The first possible phase in the <<glossary-index-lifecycle,index lifecycle>>.
|
||||||
In the hot phase, an index is actively updated and queried.
|
In the hot phase, an index is actively updated and queried.
|
||||||
// end::hot-phase-def[]
|
// end::hot-phase-def[]
|
||||||
|
|
||||||
|
[[glossary-hot-tier]] hot tier::
|
||||||
|
// tag::hot-tier-def[]
|
||||||
|
A <<glossary-data-tier, data tier>> that contains nodes that handle the indexing load
|
||||||
|
for time series data such as logs or metrics and hold your most recent,
|
||||||
|
most-frequently-accessed data.
|
||||||
|
// end::hot-tier-def[]
|
||||||
|
|
||||||
[[glossary-id]] id ::
|
[[glossary-id]] id ::
|
||||||
|
|
||||||
The ID of a <<glossary-document,document>> identifies a document. The
|
The ID of a <<glossary-document,document>> identifies a document. The
|
||||||
|
@ -492,6 +525,14 @@ This allows you access to the original object directly from search
|
||||||
results, rather than requiring a second step to retrieve the object
|
results, rather than requiring a second step to retrieve the object
|
||||||
from an ID.
|
from an ID.
|
||||||
|
|
||||||
|
[[glossary-system-index]] system index ::
|
||||||
|
// tag::system-index-def[]
|
||||||
|
An index that contains configuration information or other data used internally by the system,
|
||||||
|
such as the `.security` index.
|
||||||
|
The name of a system index is always prefixed with a dot.
|
||||||
|
You should not directly access or modify system indices.
|
||||||
|
// end::system-index-def[]
|
||||||
|
|
||||||
[[glossary-term]] term ::
|
[[glossary-term]] term ::
|
||||||
|
|
||||||
A term is an exact value that is indexed in Elasticsearch. The terms
|
A term is an exact value that is indexed in Elasticsearch. The terms
|
||||||
|
@ -525,3 +566,9 @@ See {ref}/removal-of-types.html[Removal of mapping types].
|
||||||
The second possible phase in the <<glossary-index-lifecycle,index lifecycle>>.
|
The second possible phase in the <<glossary-index-lifecycle,index lifecycle>>.
|
||||||
In the warm phase, an index is generally optimized for search and no longer updated.
|
In the warm phase, an index is generally optimized for search and no longer updated.
|
||||||
// end::warm-phase-def[]
|
// end::warm-phase-def[]
|
||||||
|
|
||||||
|
[[glossary-warm-tier]] warm tier::
|
||||||
|
// tag::warm-tier-def[]
|
||||||
|
A <<glossary-data-tier, data tier>> that contains nodes that hold time series data
|
||||||
|
that is accessed less frequently and rarely needs to be updated.
|
||||||
|
// end::warm-tier-def[]
|
||||||
|
|
Loading…
Reference in New Issue