tkalkirill commented on a change in pull request #8703:
URL: https://github.com/apache/ignite/pull/8703#discussion_r565384787
##########
File path: docs/_docs/memory-configuration/data-regions.adoc
##########
@@ -82,3 +82,72 @@
include::code-snippets/dotnet/MemoryArchitecture.cs[tag=mem,indent=0]
tab:C++[unsupported]
--
+== Cache Warm-Up Strategy
+
+The cache warm-up strategy provides an ability to load data from the disk to
the node before it is joined to the cluster.
+This prevents performance loss when the node is restarted.
+
+[NOTE]
+====
+The cache warm-up strategy is applicable only to the data regions. It can be
configured both for all regions (by default) or for each region separately.
+====
+
+Presently, Ignite warm-up strategy implies loading data into the region,
starting with indexes, until it runs out of free space.
+
+To warm up all data regions, pass the configuration parameter
`LoadAllWarmUpStrategy` to the
`DataStorageConfiguration#setDefaultWarmUpConfiguration` as follows:
+
+[source, java]
+----
+setDefaultWarmUpConfiguration(loadAllWarmUpStrategy)
Review comment:
Hello, @dmagda! I didn't find it explicitly in the code.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]