glossary.asciidoc 21 KB

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