glossary.asciidoc 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. ////
  2. ============
  3. IMPORTANT
  4. Add new terms to the Stack Docs glossary:
  5. https://github.com/elastic/stack-docs/tree/master/docs/en/glossary
  6. ============
  7. ////
  8. [glossary]
  9. [[glossary]]
  10. = Glossary
  11. [glossary]
  12. [[glossary-analysis]] analysis::
  13. // tag::analysis-def[]
  14. Process of converting unstructured <<glossary-text,text>> into a format
  15. optimized for search. See {ref}/analysis.html[Text analysis].
  16. // end::analysis-def[]
  17. [[glossary-api-key]] API key::
  18. // tag::api-key-def[]
  19. Unique identifier for authentication in {es}. When
  20. {ref}/encrypting-communications.html[transport layer security (TLS)] is enabled,
  21. all requests must be authenticated using an API key or a username and password.
  22. See the {ref}/security-api-create-api-key.html[Create API key API].
  23. // end::api-key-def[]
  24. [[glossary-auto-follow-pattern]] auto-follow pattern::
  25. // tag::auto-follow-pattern-def[]
  26. <<glossary-index-pattern,Index pattern>> that automatically configures new
  27. <<glossary-index,indices>> as <<glossary-follower-index,follower indices>> for
  28. <<glossary-ccr,{ccr}>>. See {ref}/ccr-auto-follow.html[Manage auto-follow
  29. patterns].
  30. // end::auto-follow-pattern-def[]
  31. [[glossary-cluster]] cluster::
  32. // tag::cluster-def[]
  33. A group of one or more connected {es} <<glossary-node,nodes>>. See
  34. {ref}/scalability.html[Clusters, nodes, and shards].
  35. // end::cluster-def[]
  36. [[glossary-cold-phase]] cold phase::
  37. // tag::cold-phase-def[]
  38. Third possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In the
  39. cold phase, data is no longer updated and seldom <<glossary-query,queried>>. The
  40. data still needs to be searchable, but it’s okay if those queries are slower.
  41. See {ref}/ilm-index-lifecycle.html[Index lifecycle].
  42. // end::cold-phase-def[]
  43. [[glossary-cold-tier]] cold tier::
  44. // tag::cold-tier-def[]
  45. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that hold
  46. time series data that is accessed occasionally and not normally updated. See
  47. {ref}/data-tiers.html[Data tiers].
  48. // end::cold-tier-def[]
  49. [[glossary-component-template]] component template::
  50. // tag::component-template-def[]
  51. Building block for creating <<glossary-index-template,index templates>>. A
  52. component template can specify <<glossary-mapping,mappings>>,
  53. {ref}/index-modules.html[index settings], and <<glossary-index-alias,index
  54. aliases>>. See {ref}/index-templates.html[index templates].
  55. // end::component-template-def[]
  56. [[glossary-content-tier]] content tier::
  57. // tag::content-tier-def[]
  58. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that
  59. handle the <<glossary-index,indexing>> and <<glossary-query,query>> load for
  60. content, such as a product catalog. See {ref}/data-tiers.html[Data tiers].
  61. // end::content-tier-def[]
  62. [[glossary-ccr]] {ccr} ({ccr-init})::
  63. // tag::ccr-def[]
  64. Replicates <<glossary-data-stream,data streams>> and <<glossary-index,indices>>
  65. from <<glossary-remote-cluster,remote clusters>> in a
  66. <<glossary-local-cluster,local cluster>>. See {ref}/xpack-ccr.html[{ccr-cap}].
  67. // end::ccr-def[]
  68. [[glossary-ccs]] {ccs} (CCS)::
  69. // tag::ccs-def[]
  70. Searches <<glossary-data-stream,data streams>> and <<glossary-index,indices>> on
  71. <<glossary-remote-cluster,remote clusters>> from a
  72. <<glossary-local-cluster,local cluster>>. See
  73. {ref}/modules-cross-cluster-search.html[Search across clusters].
  74. // end::ccs-def[]
  75. [[glossary-data-stream]] data stream::
  76. // tag::data-stream-def[]
  77. Named resource used to manage time series data. A data stream stores data across
  78. multiple backing <<glossary-index,indices>>. See {ref}/data-streams.html[Data
  79. streams].
  80. // end::data-stream-def[]
  81. [[glossary-data-tier]] data tier::
  82. // tag::data-tier-def[]
  83. Collection of <<glossary-node,nodes>> with the same {ref}/modules-node.html[data
  84. role] that typically share the same hardware profile. Data tiers include the
  85. <<glossary-content-tier, content tier>>, <<glossary-hot-tier, hot tier>>,
  86. <<glossary-warm-tier, warm tier>>, <<glossary-cold-tier, cold tier>>, and
  87. <<glossary-frozen-tier,frozen tier>>. See {ref}/data-tiers.html[Data tiers].
  88. // end::data-tier-def[]
  89. [[glossary-delete-phase]] delete phase::
  90. // tag::delete-phase-def[]
  91. Last possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In the
  92. delete phase, an <<glossary-index,index>> is no longer needed and can safely be
  93. deleted. See {ref}/ilm-index-lifecycle.html[Index lifecycle].
  94. // end::delete-phase-def[]
  95. [[glossary-document]] document::
  96. // tag::document-def[]
  97. JSON object containing data stored in {es}. See
  98. {ref}/documents-indices.html[Documents and indices].
  99. // end::document-def[]
  100. [[glossary-eql]]
  101. Event Query Language (EQL)::
  102. // tag::eql-def[]
  103. <<glossary-query,Query>> language for event-based time series data, such as
  104. logs, metrics, and traces. EQL supports matching for event sequences. See
  105. {ref}/eql.html[EQL].
  106. // end::eql-def[]
  107. [[glossary-field]] field::
  108. // tag::field-def[]
  109. Key-value pair in a <<glossary-document,document>>. See
  110. {ref}/mapping.html[Mapping].
  111. // end::field-def[]
  112. [[glossary-filter]] filter::
  113. // tag::filter-def[]
  114. <<glossary-query,Query>> that does not score matching documents. See
  115. {ref}/query-filter-context.html[filter context].
  116. // end::filter-def[]
  117. [[glossary-flush]] flush::
  118. // tag::flush-def[]
  119. Writes data from the {ref}/index-modules-translog.html[transaction log] to disk
  120. for permanent storage. See the {ref}/indices-flush.html[flush API].
  121. // end::flush-def[]
  122. [[glossary-follower-index]] follower index::
  123. // tag::follower-index-def[]
  124. Target <<glossary-index,index>> for <<glossary-ccr,{ccr}>>. A follower index
  125. exists in a <<glossary-local-cluster,local cluster>> and replicates a
  126. <<glossary-leader-index,leader index>>. See {ref}/xpack-ccr.html[{ccr-cap}].
  127. // end::follower-index-def[]
  128. [[glossary-force-merge]] force merge::
  129. // tag::force-merge-def[]
  130. // tag::force-merge-def-short[]
  131. Manually triggers a <<glossary-merge,merge>> to reduce the number of
  132. <<glossary-segment,segments>> in an index's <<glossary-shard,shards>>.
  133. // end::force-merge-def-short[]
  134. See the {ref}/indices-forcemerge.html[force merge API].
  135. // end::force-merge-def[]
  136. [[glossary-frozen-phase]] frozen phase::
  137. // tag::frozen-phase-def[]
  138. Fourth possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In
  139. the frozen phase, an <<glossary-index,index>> is no longer updated and
  140. <<glossary-query,queried>> rarely. The information still needs to be searchable,
  141. but it’s okay if those queries are extremely slow. See
  142. {ref}/ilm-index-lifecycle.html[Index lifecycle].
  143. // end::frozen-phase-def[]
  144. [[glossary-frozen-tier]] frozen tier::
  145. // tag::frozen-tier-def[]
  146. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that
  147. hold time series data that is accessed rarely and not normally updated. See
  148. {ref}/data-tiers.html[Data tiers].
  149. // end::frozen-tier-def[]
  150. [[glossary-hidden-index]] hidden data stream or index::
  151. // tag::hidden-index-def[]
  152. <<glossary-data-stream,Data stream>> or <<glossary-index,index>> excluded from
  153. most <<glossary-index-pattern,index patterns>> by default. See
  154. {ref}/multi-index.html#hidden-indices[Hidden data streams and indices].
  155. // end::hidden-index-def[]
  156. [[glossary-hot-phase]] hot phase::
  157. // tag::hot-phase-def[]
  158. First possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In
  159. the hot phase, an <<glossary-index,index>> is actively updated and queried. See
  160. {ref}/ilm-index-lifecycle.html[Index lifecycle].
  161. // end::hot-phase-def[]
  162. [[glossary-hot-tier]] hot tier::
  163. // tag::hot-tier-def[]
  164. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that
  165. handle the <<glossary-index,indexing>> load for time series data, such as logs or
  166. metrics. This tier holds your most recent, most frequently accessed data. See
  167. {ref}/data-tiers.html[Data tiers].
  168. // end::hot-tier-def[]
  169. [[glossary-id]] ID::
  170. // tag::id-def[]
  171. Identifier for a <<glossary-document,document>>. Document IDs must be unique
  172. within an <<glossary-index,index>>. See the {ref}/mapping-id-field.html[`_id`
  173. field].
  174. // end::id-def[]
  175. [[glossary-index]] index::
  176. // tag::index-def[]
  177. . Collection of JSON <<glossary-document,documents>>. See
  178. {ref}/documents-indices.html[Documents and indices].
  179. . To add one or more JSON documents to {es}. This process is called indexing.
  180. // end::index-def[]
  181. [[glossary-index-alias]] index alias::
  182. // tag::index-alias-def[]
  183. Secondary name for one or more <<glossary-index,indices>>. Most {es} APIs accept
  184. an index alias in place of an index name. See the
  185. {ref}/indices-add-alias.html[Create or update index alias API].
  186. // end::index-alias-def[]
  187. [[glossary-index-lifecycle]] index lifecycle::
  188. // tag::index-lifecycle-def[]
  189. Five phases an <<glossary-index,index>> can transition through:
  190. <<glossary-hot-phase,hot>>, <<glossary-warm-phase,warm>>,
  191. <<glossary-cold-phase,cold>>, <<glossary-frozen-phase,frozen>>,
  192. and <<glossary-delete-phase,delete>>. See {ref}/ilm-policy-definition.html[Index
  193. lifecycle].
  194. // end::index-lifecycle-def[]
  195. [[glossary-index-lifecycle-policy]] index lifecycle policy::
  196. // tag::index-lifecycle-policy-def[]
  197. Specifies how an <<glossary-index,index>> moves between phases in the
  198. <<glossary-index-lifecycle,index lifecycle>> and what actions to perform during
  199. each phase. See {ref}/ilm-policy-definition.html[Index lifecycle].
  200. // end::index-lifecycle-policy-def[]
  201. [[glossary-index-pattern]] index pattern::
  202. // tag::index-pattern-def[]
  203. String containing a wildcard (`*`) pattern that can match multiple
  204. <<glossary-data-stream,data streams>>, <<glossary-index,indices>>, or
  205. <<glossary-index-alias,index aliases>>. See {ref}/multi-index.html[Multi-target
  206. syntax].
  207. // end::index-pattern-def[]
  208. [[glossary-index-template]] index template::
  209. // tag::index-template-def[]
  210. Automatically configures the <<glossary-mapping,mappings>>,
  211. {ref}/index-modules.html[index settings], and <<glossary-index-alias,aliases>>
  212. of new <<glossary-index,indices>> that match its <<glossary-index-pattern,index
  213. pattern>>. You can also use index templates to create
  214. <<glossary-data-stream,data streams>>. See {ref}/index-templates.html[Index
  215. templates].
  216. // end::index-template-def[]
  217. [[glossary-leader-index]] leader index::
  218. // tag::leader-index-def[]
  219. Source <<glossary-index,index>> for <<glossary-ccr,{ccr}>>. A leader index
  220. exists on a <<glossary-remote-cluster,remote cluster>> and is replicated to
  221. <<glossary-follower-index,follower indices>>. See
  222. {ref}/xpack-ccr.html[{ccr-cap}].
  223. // end::leader-index-def[]
  224. [[glossary-local-cluster]] local cluster::
  225. // tag::local-cluster-def[]
  226. <<glossary-cluster,Cluster>> that pulls data from a
  227. <<glossary-remote-cluster,remote cluster>> in <<glossary-ccs,{ccs}>> or
  228. <<glossary-ccr,{ccr}>>. See {ref}/modules-remote-clusters.html[Remote clusters].
  229. // end::local-cluster-def[]
  230. [[glossary-mapping]] mapping::
  231. // tag::mapping-def[]
  232. Defines how a <<glossary-document,document>>, its <<glossary-field,fields>>, and
  233. its metadata are stored in {es}. Similar to a schema definition. See
  234. {ref}/mapping.html[Mapping].
  235. // end::mapping-def[]
  236. [[glossary-merge]] merge::
  237. // tag::merge-def[]
  238. Process of combining a <<glossary-shard,shard>>'s smaller Lucene
  239. <<glossary-segment,segments>> into a larger one. {es} manages merges
  240. automatically.
  241. // end::merge-def[]
  242. [[glossary-node]] node::
  243. // tag::node-def[]
  244. A single {es} server. One or more nodes can form a <<glossary-cluster,cluster>>.
  245. See {ref}/scalability.html[Clusters, nodes, and shards].
  246. // end::node-def[]
  247. [[glossary-primary-shard]] primary shard::
  248. // tag::primary-shard-def[]
  249. Lucene instance containing some or all data for an <<glossary-index,index>>.
  250. When you index a <<glossary-document,document>>, {es} adds the document to
  251. primary shards before <<glossary-replica-shard,replica shards>>. See
  252. {ref}/scalability.html[Clusters, nodes, and shards].
  253. // end::primary-shard-def[]
  254. [[glossary-query]] query::
  255. // tag::query-def[]
  256. Request for information about your data. You can think of a query as a
  257. question, written in a way {es} understands. See
  258. {ref}/search-your-data.html[Search your data].
  259. // end::query-def[]
  260. [[glossary-recovery]] recovery::
  261. // tag::recovery-def[]
  262. Process of syncing a <<glossary-replica-shard,replica shard>> from a
  263. <<glossary-primary-shard,primary shard>>. Upon completion, the replica shard is
  264. available for searches. See the {ref}/indices-recovery.html[index recovery API].
  265. // end::recovery-def[]
  266. [[glossary-reindex]] reindex::
  267. // tag::reindex-def[]
  268. Copies documents from a source to a destination. The source and destination can
  269. be a <<glossary-data-stream,data stream>>, <<glossary-index,index>>, or
  270. <<glossary-index-alias,index alias>>. See the {ref}/docs-reindex.html[Reindex
  271. API].
  272. // end::reindex-def[]
  273. [[glossary-remote-cluster]] remote cluster::
  274. // tag::remote-cluster-def[]
  275. A separate <<glossary-cluster,cluster>>, often in a different data center or
  276. locale, that contains <<glossary-index,indices>> that can be replicated or
  277. searched by the <<glossary-local-cluster,local cluster>>. The connection to a
  278. remote cluster is unidirectional. See {ref}/modules-remote-clusters.html[Remote
  279. clusters].
  280. // end::remote-cluster-def[]
  281. [[glossary-replica-shard]] replica shard::
  282. // tag::replica-shard-def[]
  283. Copy of a <<glossary-primary-shard,primary shard>>. Replica shards can improve
  284. search performance and resiliency by distributing data across multiple
  285. <<glossary-node,nodes>>. See {ref}/scalability.html[Clusters, nodes, and
  286. shards].
  287. // end::replica-shard-def[]
  288. [[glossary-rollover]] rollover::
  289. // tag::rollover-def[]
  290. // tag::rollover-def-short[]
  291. Creates a new write index when the current one reaches a certain size, number of
  292. docs, or age.
  293. // end::rollover-def-short[]
  294. A rollover can target a <<glossary-data-stream,data stream>> or an
  295. <<glossary-index-alias,index alias>> with a write index.
  296. // end::rollover-def[]
  297. [[glossary-rollup]] rollup::
  298. // tag::rollup-def[]
  299. Summarizes high-granularity data into a more compressed format to maintain access
  300. to historical data in a cost-effective way. See
  301. {ref}/xpack-rollup.html[Roll up your data].
  302. // end::rollup-def[]
  303. [[glossary-rollup-index]] rollup index::
  304. // tag::rollup-index-def[]
  305. Special type of <<glossary-index,index>> for storing historical data at reduced
  306. granularity. Documents are summarized and indexed into a rollup index by a
  307. <<glossary-rollup-job,rollup job>>. See {ref}/xpack-rollup.html[Rolling up
  308. historical data].
  309. // end::rollup-index-def[]
  310. [[glossary-rollup-job]] rollup job::
  311. // tag::rollup-job-def[]
  312. Background task that runs continuously to summarize documents in an
  313. <<glossary-index,index>> and index the summaries into a separate rollup index.
  314. The job configuration controls what data is rolled up and how often. See
  315. {ref}/xpack-rollup.html[Rolling up historical data].
  316. // end::rollup-job-def[]
  317. [[glossary-routing]] routing::
  318. // tag::routing-def[]
  319. Process of sending and retrieving data from a specific
  320. <<glossary-primary-shard,primary shard>>. {es} uses a hashed routing value to
  321. choose this shard. You can provide a routing value in
  322. <<glossary-index,indexing>> and search requests to take advantage of caching.
  323. See the {ref}/mapping-routing-field.html[`_routing` field].
  324. // end::routing-def[]
  325. [[glossary-runtime-fields]] runtime field::
  326. // tag::runtime-fields-def[]
  327. <<glossary-field,Field>> that is evaluated at query time. You access runtime
  328. fields from the search API like any other field, and {es} sees runtime fields no
  329. differently. See {ref}/runtime.html[Runtime fields].
  330. // end::runtime-fields-def[]
  331. [[glossary-searchable-snapshot]] searchable snapshot::
  332. // tag::searchable-snapshot-def[]
  333. <<glossary-snapshot,Snapshot>> of an <<glossary-index,index>> mounted as a
  334. <<glossary-searchable-snapshot-index,searchable snapshot index>>. You can search
  335. this index like a regular index. See {ref}/searchable-snapshots.html[searchable
  336. snapshots].
  337. // end::searchable-snapshot-def[]
  338. [[glossary-searchable-snapshot-index]] searchable snapshot index::
  339. // tag::searchable-snapshot-index-def[]
  340. <<glossary-index,Index>> whose data is stored in a
  341. <<glossary-snapshot,snapshot>>. Searchable snapshot indices do not need
  342. <<glossary-replica-shard,replica shards>> for resilience, since their data is
  343. reliably stored outside the cluster. See
  344. {ref}/searchable-snapshots.html[searchable snapshots].
  345. // end::searchable-snapshot-index-def[]
  346. [[glossary-segment]] segment::
  347. // tag::segment-def[]
  348. Data file in a <<glossary-shard,shard>>'s Lucene instance. {es} manages Lucene
  349. segments automatically.
  350. // end::segment-def[]
  351. [[glossary-shard]] shard::
  352. // tag::shard-def[]
  353. Lucene instance containing some or all data for an <<glossary-index,index>>.
  354. {es} automatically creates and manages these Lucene instances. There are two
  355. types of shards: <<glossary-primary-shard,primary>> and
  356. <<glossary-replica-shard,replica>>. See {ref}/scalability.html[Clusters, nodes,
  357. and shards].
  358. // end::shard-def[]
  359. [[glossary-shrink]] shrink::
  360. // tag::shrink-def[]
  361. // tag::shrink-def-short[]
  362. Reduces the number of <<glossary-primary-shard,primary shards>> in an index.
  363. // end::shrink-def-short[]
  364. See the {ref}/indices-shrink-index.html[shrink index API].
  365. // end::shrink-def[]
  366. [[glossary-snapshot]] snapshot::
  367. // tag::snapshot-def[]
  368. Backup taken of a running <<glossary-cluster,cluster>>. You can take snapshots
  369. of the entire cluster or only specific <<glossary-data-stream,data streams>> and
  370. <<glossary-index,indices>>. See {ref}/snapshot-restore.html[Snapshot and
  371. restore].
  372. // end::snapshot-def[]
  373. [[glossary-snapshot-lifecycle-policy]] snapshot lifecycle policy::
  374. // tag::snapshot-lifecycle-policy-def[]
  375. Specifies how frequently to perform automatic backups of a cluster and how long
  376. to retain the resulting <<glossary-snapshot,snapshots>>. See
  377. {ref}/snapshot-lifecycle-management.html[Manage the snapshot lifecycle]
  378. // end::snapshot-lifecycle-policy-def[]
  379. [[glossary-snapshot-repository]] snapshot repository::
  380. // tag::snapshot-repository-def[]
  381. Location where <<glossary-snapshot,snapshots>> are stored. A snapshot repository
  382. can be a shared filesystem or a remote repository, such as Azure or Google Cloud
  383. Storage. See {ref}/snapshot-restore.html[Snapshot and restore].
  384. // end::snapshot-repository-def[]
  385. [[glossary-source_field]] source field::
  386. // tag::source-field-def[]
  387. Original JSON object provided during <<glossary-index,indexing>>. See the
  388. {ref}/mapping-source-field.html[`_source` field].
  389. // end::source-field-def[]
  390. [[glossary-split]] split::
  391. // tag::split-def[]
  392. Adds more <<glossary-primary-shard,primary shards>> to an
  393. <<glossary-index,index>>. See the {ref}/indices-split-index.html[split index
  394. API].
  395. // end::split-def[]
  396. [[glossary-system-index]] system index::
  397. // tag::system-index-def[]
  398. <<glossary-index,Index>> containing configurations and other data used
  399. internally by the {stack}. System index names start with a dot (`.`), such as
  400. `.security`. Do not directly access or change system indices.
  401. // end::system-index-def[]
  402. [[glossary-term]] term::
  403. // tag::term-def[]
  404. See {ref}/glossary.html#glossary-token[token].
  405. // end::term-def[]
  406. [[glossary-text]] text::
  407. // tag::text-def[]
  408. Unstructured content, such as a product description or log message. You
  409. typically <<glossary-analysis,analyze>> text for better search. See
  410. {ref}/analysis.html[Text analysis].
  411. // end::text-def[]
  412. [[glossary-token]] token::
  413. // tag::token-def[]
  414. A chunk of unstructured <<glossary-text,text>> that's been optimized for search.
  415. In most cases, tokens are individual words. Tokens are also called terms. See
  416. {ref}/analysis.html[Text analysis].
  417. // end::token-def[]
  418. [[glossary-tokenization]] tokenization::
  419. // tag::tokenization-def[]
  420. Process of breaking unstructured text down into smaller, searchable chunks
  421. called <<glossary-token,tokens>>. See
  422. {ref}/analysis-overview.html#tokenization[Tokenization].
  423. // end::tokenization-def[]
  424. [[glossary-warm-phase]] warm phase::
  425. // tag::warm-phase-def[]
  426. Second possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In
  427. the warm phase, an <<glossary-index,index>> is generally optimized for search
  428. and no longer updated. See {ref}/ilm-policy-definition.html[Index lifecycle].
  429. // end::warm-phase-def[]
  430. [[glossary-warm-tier]] warm tier::
  431. // tag::warm-tier-def[]
  432. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that hold
  433. time series data that is accessed less frequently and rarely needs to be
  434. updated. See {ref}/data-tiers.html[Data tiers].
  435. // end::warm-tier-def[]