@@ -80,6 +80,30 @@ In most cases, the goal of filtering is to reduce the number of documents that h
8080Follower indices are the target indices for <<glossary-ccr,{ccr}>>. They exist
8181in your local cluster and replicate <<glossary-leader-index,leader indices>>.
8282
83+ [[glossary-force-merge]] force merge ::
84+ // tag::force-merge-def[]
85+ // tag::force-merge-def-short[]
86+ Manually trigger a merge to reduce the number of segments in each shard of an index
87+ and free up the space used by deleted documents.
88+ // end::force-merge-def-short[]
89+ You should not force merge indices that are actively being written to.
90+ Merging is normally performed automatically, but you can use force merge after
91+ <<glossary-rollover, rollover>> to reduce the shards in the old index to a single segment.
92+ See the {ref}/indices-forcemerge.html[force merge API].
93+ // end::force-merge-def[]
94+
95+ [[glossary-freeze]] freeze ::
96+ // tag::freeze-def[]
97+ // tag::freeze-def-short[]
98+ Make an index read-only and minimize its memory footprint.
99+ // end::freeze-def-short[]
100+ Frozen indices can be searched without incurring the overhead of of re-opening a closed index,
101+ but searches are throttled and might be slower.
102+ You can freeze indices to reduce the overhead of keeping older indices searchable
103+ before you are ready to archive or delete them.
104+ See the {ref}/freeze-index-api.html[freeze API].
105+ // end::freeze-def[]
106+
83107[[glossary-id]] id ::
84108
85109The ID of a <<glossary-document,document>> identifies a document. The
@@ -114,6 +138,18 @@ See {ref}/indices-add-alias.html[Add index alias].
114138See <<indices-add-alias>>.
115139--
116140
141+ [[glossary-index-template]] index template ::
142+ +
143+ --
144+ // tag::index-template-def[]
145+ // tag::index-template-def-short[]
146+ Defines settings and mappings to apply to new indexes that match a simple naming pattern, such as _logs-*_.
147+ // end::index-template-def-short[]
148+ An index template can also attach a lifecycle policy to the new index.
149+ Index templates are used to automatically configure indices created during <<glossary-rollover, rollover>>.
150+ // end::index-template-def[]
151+ --
152+
117153[[glossary-leader-index]] leader index ::
118154
119155Leader indices are the source indices for <<glossary-ccr,{ccr}>>. They exist
@@ -206,6 +242,19 @@ By default, each primary shard has one replica, but the number of
206242replicas can be changed dynamically on an existing index. A replica
207243shard will never be started on the same node as its primary shard.
208244
245+ [[glossary-rollover]] rollover ::
246+ +
247+ --
248+ // tag::rollover-def[]
249+ // tag::rollover-def-short[]
250+ Redirect an alias to begin writing to a new index when the existing index reaches a certain age, number of docs, or size.
251+ // end::rollover-def-short[]
252+ The new index is automatically configured according to any matching <<glossary-index-template, index templates>>.
253+ For example, if you're indexing log data, you might use rollover to create daily or weekly indices.
254+ See the {ref}/indices-rollover-index.html[rollover index API].
255+ // end::rollover-def[]
256+ --
257+
209258[[glossary-routing]] routing ::
210259
211260When you index a document, it is stored on a single
@@ -220,7 +269,9 @@ time, or a <<mapping-routing-field,routing
220269field>> in the <<glossary-mapping,mapping>>.
221270
222271[[glossary-shard]] shard ::
223-
272+ +
273+ --
274+ // tag::shard-def[]
224275A shard is a single Lucene instance. It is a low-level “worker” unit
225276which is managed automatically by Elasticsearch. An index is a logical
226277namespace which points to <<glossary-primary-shard,primary>> and
@@ -234,6 +285,18 @@ Elasticsearch distributes shards amongst all <<glossary-node,nodes>> in the
234285<<glossary-cluster,cluster>>, and can move shards automatically from one
235286node to another in the case of node failure, or the addition of new
236287nodes.
288+ // end::shard-def[]
289+ --
290+
291+ [[glossary-shrink]] shrink ::
292+ // tag::shrink-def[]
293+ // tag::shrink-def-short[]
294+ Reduce the number of primary shards in an index.
295+ // end::shrink-def-short[]
296+ You can shrink an index to reduce its overhead when the request volume drops.
297+ For example, you might opt to shrink an index once it is no longer the write index.
298+ See the {ref}/indices-shrink-index.html[shrink index API].
299+ // end::shrink-def[]
237300
238301[[glossary-source_field]] source field ::
239302
0 commit comments