glossary.asciidoc 20 KB

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