glossary.asciidoc 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  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-freeze]] freeze::
  137. // tag::freeze-def[]
  138. // tag::freeze-def-short[]
  139. Makes an index read-only and minimizes its memory footprint.
  140. // end::freeze-def-short[]
  141. See the {ref}/freeze-index-api.html[freeze API].
  142. // end::freeze-def[]
  143. [[glossary-frozen-index]] frozen index::
  144. // tag::frozen-index-def[]
  145. An <<glossary-index,index>> reduced to a low overhead state that still enables
  146. occasional searches.
  147. See the {ref}/freeze-index-api.html[freeze API].
  148. // end::frozen-index-def[]
  149. [[glossary-frozen-phase]] frozen phase::
  150. // tag::frozen-phase-def[]
  151. Fourth possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In
  152. the frozen phase, an <<glossary-index,index>> is no longer updated and
  153. <<glossary-query,queried>> rarely. The information still needs to be searchable,
  154. but it’s okay if those queries are extremely slow. See
  155. {ref}/ilm-index-lifecycle.html[Index lifecycle].
  156. // end::frozen-phase-def[]
  157. [[glossary-frozen-tier]] frozen tier::
  158. // tag::frozen-tier-def[]
  159. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that
  160. hold time series data that is accessed rarely and not normally updated. See
  161. {ref}/data-tiers.html[Data tiers].
  162. // end::frozen-tier-def[]
  163. [[glossary-hidden-index]] hidden data stream or index::
  164. // tag::hidden-index-def[]
  165. <<glossary-data-stream,Data stream>> or <<glossary-index,index>> excluded from
  166. most <<glossary-index-pattern,index patterns>> by default. See
  167. {ref}/multi-index.html#hidden-indices[Hidden data streams and indices].
  168. // end::hidden-index-def[]
  169. [[glossary-hot-phase]] hot phase::
  170. // tag::hot-phase-def[]
  171. First possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In
  172. the hot phase, an <<glossary-index,index>> is actively updated and queried. See
  173. {ref}/ilm-index-lifecycle.html[Index lifecycle].
  174. // end::hot-phase-def[]
  175. [[glossary-hot-tier]] hot tier::
  176. // tag::hot-tier-def[]
  177. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that
  178. handle the <<glossary-index,indexing>> load for time series data, such as logs or
  179. metrics. This tier holds your most recent, most frequently accessed data. See
  180. {ref}/data-tiers.html[Data tiers].
  181. // end::hot-tier-def[]
  182. [[glossary-id]] ID::
  183. // tag::id-def[]
  184. Identifier for a <<glossary-document,document>>. Document IDs must be unique
  185. within an <<glossary-index,index>>. See the {ref}/mapping-id-field.html[`_id`
  186. field].
  187. // end::id-def[]
  188. [[glossary-index]] index::
  189. // tag::index-def[]
  190. . Collection of JSON <<glossary-document,documents>>. See
  191. {ref}/documents-indices.html[Documents and indices].
  192. . To add one or more JSON documents to {es}. This process is called indexing.
  193. // end::index-def[]
  194. [[glossary-index-alias]] index alias::
  195. // tag::index-alias-def[]
  196. Secondary name for one or more <<glossary-index,indices>>. Most {es} APIs accept
  197. an index alias in place of an index name. See the
  198. {ref}/indices-add-alias.html[Create or update index alias API].
  199. // end::index-alias-def[]
  200. [[glossary-index-lifecycle]] index lifecycle::
  201. // tag::index-lifecycle-def[]
  202. Five phases an <<glossary-index,index>> can transition through:
  203. <<glossary-hot-phase,hot>>, <<glossary-warm-phase,warm>>,
  204. <<glossary-cold-phase,cold>>, <<glossary-frozen-phase,frozen>>,
  205. and <<glossary-delete-phase,delete>>. See {ref}/ilm-policy-definition.html[Index
  206. lifecycle].
  207. // end::index-lifecycle-def[]
  208. [[glossary-index-lifecycle-policy]] index lifecycle policy::
  209. // tag::index-lifecycle-policy-def[]
  210. Specifies how an <<glossary-index,index>> moves between phases in the
  211. <<glossary-index-lifecycle,index lifecycle>> and what actions to perform during
  212. each phase. See {ref}/ilm-policy-definition.html[Index lifecycle].
  213. // end::index-lifecycle-policy-def[]
  214. [[glossary-index-pattern]] index pattern::
  215. // tag::index-pattern-def[]
  216. String containing a wildcard (`*`) pattern that can match multiple
  217. <<glossary-data-stream,data streams>>, <<glossary-index,indices>>, or
  218. <<glossary-index-alias,index aliases>>. See {ref}/multi-index.html[Multi-target
  219. syntax].
  220. // end::index-pattern-def[]
  221. [[glossary-index-template]] index template::
  222. // tag::index-template-def[]
  223. Automatically configures the <<glossary-mapping,mappings>>,
  224. {ref}/index-modules.html[index settings], and <<glossary-index-alias,aliases>>
  225. of new <<glossary-index,indices>> that match its <<glossary-index-pattern,index
  226. pattern>>. You can also use index templates to create
  227. <<glossary-data-stream,data streams>>. See {ref}/index-templates.html[Index
  228. templates].
  229. // end::index-template-def[]
  230. [[glossary-leader-index]] leader index::
  231. // tag::leader-index-def[]
  232. Source <<glossary-index,index>> for <<glossary-ccr,{ccr}>>. A leader index
  233. exists on a <<glossary-remote-cluster,remote cluster>> and is replicated to
  234. <<glossary-follower-index,follower indices>>. See
  235. {ref}/xpack-ccr.html[{ccr-cap}].
  236. // end::leader-index-def[]
  237. [[glossary-local-cluster]] local cluster::
  238. // tag::local-cluster-def[]
  239. <<glossary-cluster,Cluster>> that pulls data from a
  240. <<glossary-remote-cluster,remote cluster>> in <<glossary-ccs,{ccs}>> or
  241. <<glossary-ccr,{ccr}>>. See {ref}/modules-remote-clusters.html[Remote clusters].
  242. // end::local-cluster-def[]
  243. [[glossary-mapping]] mapping::
  244. // tag::mapping-def[]
  245. Defines how a <<glossary-document,document>>, its <<glossary-field,fields>>, and
  246. its metadata are stored in {es}. Similar to a schema definition. See
  247. {ref}/mapping.html[Mapping].
  248. // end::mapping-def[]
  249. [[glossary-merge]] merge::
  250. // tag::merge-def[]
  251. Process of combining a <<glossary-shard,shard>>'s smaller Lucene
  252. <<glossary-segment,segments>> into a larger one. {es} manages merges
  253. automatically.
  254. // end::merge-def[]
  255. [[glossary-node]] node::
  256. // tag::node-def[]
  257. A single {es} server. One or more nodes can form a <<glossary-cluster,cluster>>.
  258. See {ref}/scalability.html[Clusters, nodes, and shards].
  259. // end::node-def[]
  260. [[glossary-primary-shard]] primary shard::
  261. // tag::primary-shard-def[]
  262. Lucene instance containing some or all data for an <<glossary-index,index>>.
  263. When you index a <<glossary-document,document>>, {es} adds the document to
  264. primary shards before <<glossary-replica-shard,replica shards>>. See
  265. {ref}/scalability.html[Clusters, nodes, and shards].
  266. // end::primary-shard-def[]
  267. [[glossary-query]] query::
  268. // tag::query-def[]
  269. Request for information about your data. You can think of a query as a
  270. question, written in a way {es} understands. See
  271. {ref}/search-your-data.html[Search your data].
  272. // end::query-def[]
  273. [[glossary-recovery]] recovery::
  274. // tag::recovery-def[]
  275. Process of syncing a <<glossary-replica-shard,replica shard>> from a
  276. <<glossary-primary-shard,primary shard>>. Upon completion, the replica shard is
  277. available for searches. See the {ref}/indices-recovery.html[index recovery API].
  278. // end::recovery-def[]
  279. [[glossary-reindex]] reindex::
  280. // tag::reindex-def[]
  281. Copies documents from a source to a destination. The source and destination can
  282. be a <<glossary-data-stream,data stream>>, <<glossary-index,index>>, or
  283. <<glossary-index-alias,index alias>>. See the {ref}/docs-reindex.html[Reindex
  284. API].
  285. // end::reindex-def[]
  286. [[glossary-remote-cluster]] remote cluster::
  287. // tag::remote-cluster-def[]
  288. A separate <<glossary-cluster,cluster>>, often in a different data center or
  289. locale, that contains <<glossary-index,indices>> that can be replicated or
  290. searched by the <<glossary-local-cluster,local cluster>>. The connection to a
  291. remote cluster is unidirectional. See {ref}/modules-remote-clusters.html[Remote
  292. clusters].
  293. // end::remote-cluster-def[]
  294. [[glossary-replica-shard]] replica shard::
  295. // tag::replica-shard-def[]
  296. Copy of a <<glossary-primary-shard,primary shard>>. Replica shards can improve
  297. search performance and resiliency by distributing data across multiple
  298. <<glossary-node,nodes>>. See {ref}/scalability.html[Clusters, nodes, and
  299. shards].
  300. // end::replica-shard-def[]
  301. [[glossary-rollover]] rollover::
  302. // tag::rollover-def[]
  303. // tag::rollover-def-short[]
  304. Creates a new write index when the current one reaches a certain size, number of
  305. docs, or age.
  306. // end::rollover-def-short[]
  307. A rollover can target a <<glossary-data-stream,data stream>> or an
  308. <<glossary-index-alias,index alias>> with a write index.
  309. // end::rollover-def[]
  310. [[glossary-rollup]] rollup::
  311. // tag::rollup-def[]
  312. Summarizes high-granularity data into a more compressed format to maintain access
  313. to historical data in a cost-effective way. See
  314. {ref}/xpack-rollup.html[Roll up your data].
  315. // end::rollup-def[]
  316. [[glossary-rollup-index]] rollup index::
  317. // tag::rollup-index-def[]
  318. Special type of <<glossary-index,index>> for storing historical data at reduced
  319. granularity. Documents are summarized and indexed into a rollup index by a
  320. <<glossary-rollup-job,rollup job>>. See {ref}/xpack-rollup.html[Rolling up
  321. historical data].
  322. // end::rollup-index-def[]
  323. [[glossary-rollup-job]] rollup job::
  324. // tag::rollup-job-def[]
  325. Background task that runs continuously to summarize documents in an
  326. <<glossary-index,index>> and index the summaries into a separate rollup index.
  327. The job configuration controls what data is rolled up and how often. See
  328. {ref}/xpack-rollup.html[Rolling up historical data].
  329. // end::rollup-job-def[]
  330. [[glossary-routing]] routing::
  331. // tag::routing-def[]
  332. Process of sending and retrieving data from a specific
  333. <<glossary-primary-shard,primary shard>>. {es} uses a hashed routing value to
  334. choose this shard. You can provide a routing value in
  335. <<glossary-index,indexing>> and search requests to take advantage of caching.
  336. See the {ref}/mapping-routing-field.html[`_routing` field].
  337. // end::routing-def[]
  338. [[glossary-runtime-fields]] runtime field::
  339. // tag::runtime-fields-def[]
  340. <<glossary-field,Field>> that is evaluated at query time. You access runtime
  341. fields from the search API like any other field, and {es} sees runtime fields no
  342. differently. See {ref}/runtime.html[Runtime fields].
  343. // end::runtime-fields-def[]
  344. [[glossary-searchable-snapshot]] searchable snapshot::
  345. // tag::searchable-snapshot-def[]
  346. <<glossary-snapshot,Snapshot>> of an <<glossary-index,index>> mounted as a
  347. <<glossary-searchable-snapshot-index,searchable snapshot index>>. You can search
  348. this index like a regular index. See {ref}/searchable-snapshots.html[searchable
  349. snapshots].
  350. // end::searchable-snapshot-def[]
  351. [[glossary-searchable-snapshot-index]] searchable snapshot index::
  352. // tag::searchable-snapshot-index-def[]
  353. <<glossary-index,Index>> whose data is stored in a
  354. <<glossary-snapshot,snapshot>>. Searchable snapshot indices do not need
  355. <<glossary-replica-shard,replica shards>> for resilience, since their data is
  356. reliably stored outside the cluster. See
  357. {ref}/searchable-snapshots.html[searchable snapshots].
  358. // end::searchable-snapshot-index-def[]
  359. [[glossary-segment]] segment::
  360. // tag::segment-def[]
  361. Data file in a <<glossary-shard,shard>>'s Lucene instance. {es} manages Lucene
  362. segments automatically.
  363. // end::segment-def[]
  364. [[glossary-shard]] shard::
  365. // tag::shard-def[]
  366. Lucene instance containing some or all data for an <<glossary-index,index>>.
  367. {es} automatically creates and manages these Lucene instances. There are two
  368. types of shards: <<glossary-primary-shard,primary>> and
  369. <<glossary-replica-shard,replica>>. See {ref}/scalability.html[Clusters, nodes,
  370. and shards].
  371. // end::shard-def[]
  372. [[glossary-shrink]] shrink::
  373. // tag::shrink-def[]
  374. // tag::shrink-def-short[]
  375. Reduces the number of <<glossary-primary-shard,primary shards>> in an index.
  376. // end::shrink-def-short[]
  377. See the {ref}/indices-shrink-index.html[shrink index API].
  378. // end::shrink-def[]
  379. [[glossary-snapshot]] snapshot::
  380. // tag::snapshot-def[]
  381. Backup taken of a running <<glossary-cluster,cluster>>. You can take snapshots
  382. of the entire cluster or only specific <<glossary-data-stream,data streams>> and
  383. <<glossary-index,indices>>. See {ref}/snapshot-restore.html[Snapshot and
  384. restore].
  385. // end::snapshot-def[]
  386. [[glossary-snapshot-lifecycle-policy]] snapshot lifecycle policy::
  387. // tag::snapshot-lifecycle-policy-def[]
  388. Specifies how frequently to perform automatic backups of a cluster and how long
  389. to retain the resulting <<glossary-snapshot,snapshots>>. See
  390. {ref}/snapshot-lifecycle-management.html[Manage the snapshot lifecycle]
  391. // end::snapshot-lifecycle-policy-def[]
  392. [[glossary-snapshot-repository]] snapshot repository::
  393. // tag::snapshot-repository-def[]
  394. Location where <<glossary-snapshot,snapshots>> are stored. A snapshot repository
  395. can be a shared filesystem or a remote repository, such as Azure or Google Cloud
  396. Storage. See {ref}/snapshot-restore.html[Snapshot and restore].
  397. // end::snapshot-repository-def[]
  398. [[glossary-source_field]] source field::
  399. // tag::source-field-def[]
  400. Original JSON object provided during <<glossary-index,indexing>>. See the
  401. {ref}/mapping-source-field.html[`_source` field].
  402. // end::source-field-def[]
  403. [[glossary-split]] split::
  404. // tag::split-def[]
  405. Adds more <<glossary-primary-shard,primary shards>> to an
  406. <<glossary-index,index>>. See the {ref}/indices-split-index.html[split index
  407. API].
  408. // end::split-def[]
  409. [[glossary-system-index]] system index::
  410. // tag::system-index-def[]
  411. <<glossary-index,Index>> containing configurations and other data used
  412. internally by the {stack}. System index names start with a dot (`.`), such as
  413. `.security`. Do not directly access or change system indices.
  414. // end::system-index-def[]
  415. [[glossary-term]] term::
  416. // tag::term-def[]
  417. See {ref}/glossary.html#glossary-token[token].
  418. // end::term-def[]
  419. [[glossary-text]] text::
  420. // tag::text-def[]
  421. Unstructured content, such as a product description or log message. You
  422. typically <<glossary-analysis,analyze>> text for better search. See
  423. {ref}/analysis.html[Text analysis].
  424. // end::text-def[]
  425. [[glossary-token]] token::
  426. // tag::token-def[]
  427. A chunk of unstructured <<glossary-text,text>> that's been optimized for search.
  428. In most cases, tokens are individual words. Tokens are also called terms. See
  429. {ref}/analysis.html[Text analysis].
  430. // end::token-def[]
  431. [[glossary-tokenization]] tokenization::
  432. // tag::tokenization-def[]
  433. Process of breaking unstructured text down into smaller, searchable chunks
  434. called <<glossary-token,tokens>>. See
  435. {ref}/analysis-overview.html#tokenization[Tokenization].
  436. // end::tokenization-def[]
  437. [[glossary-warm-phase]] warm phase::
  438. // tag::warm-phase-def[]
  439. Second possible phase in the <<glossary-index-lifecycle,index lifecycle>>. In
  440. the warm phase, an <<glossary-index,index>> is generally optimized for search
  441. and no longer updated. See {ref}/ilm-policy-definition.html[Index lifecycle].
  442. // end::warm-phase-def[]
  443. [[glossary-warm-tier]] warm tier::
  444. // tag::warm-tier-def[]
  445. <<glossary-data-tier,Data tier>> that contains <<glossary-node,nodes>> that hold
  446. time series data that is accessed less frequently and rarely needs to be
  447. updated. See {ref}/data-tiers.html[Data tiers].
  448. // end::warm-tier-def[]