Skip to content

Commit

Permalink
[DOCS] disable the ILM history store on full cluster restore (elastic…
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidan authored Nov 23, 2022
1 parent f62db9f commit 261f184
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/reference/snapshot-restore/restore-snapshot.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -289,14 +289,15 @@ the cluster.
. Temporarily stop indexing and turn off the following features:
+
--
* GeoIP database downloader
* GeoIP database downloader and ILM history store
+
[source,console]
----
PUT _cluster/settings
{
"persistent": {
"ingest.geoip.downloader.enabled": false
"ingest.geoip.downloader.enabled": false,
"indices.lifecycle.history_index_enabled": false
}
}
----
Expand Down Expand Up @@ -429,14 +430,15 @@ POST _snapshot/my_repository/my_snapshot_2099.05.06/_restore
features you stopped:
+
--
* GeoIP database downloader
* GeoIP database downloader and ILM history store
+
[source,console]
----
PUT _cluster/settings
{
"persistent": {
"ingest.geoip.downloader.enabled": true
"ingest.geoip.downloader.enabled": true,
"indices.lifecycle.history_index_enabled": true
}
}
----
Expand Down

0 comments on commit 261f184

Please sign in to comment.