diff --git a/docs/modules/maintain-cluster/pages/shutdown.adoc b/docs/modules/maintain-cluster/pages/shutdown.adoc
index aa65c6ee9..6a45c9d69 100644
--- a/docs/modules/maintain-cluster/pages/shutdown.adoc
+++ b/docs/modules/maintain-cluster/pages/shutdown.adoc
@@ -21,7 +21,7 @@ bin/hz-cluster-admin -a
-c -o shutdown
REST API::
+
--
-include::clients:partial$rest-deprecation.adoc[]
+CAUTION: The REST API has been deprecated and will be removed as of Hazelcast version 7.0. An improved version of this feature is under development.
NOTE: To use the REST API to shut down a cluster, you must first xref:clients:rest.adoc[enable it].
diff --git a/docs/modules/tiered-storage/pages/overview.adoc b/docs/modules/tiered-storage/pages/overview.adoc
index f25b998ae..93fa880c1 100644
--- a/docs/modules/tiered-storage/pages/overview.adoc
+++ b/docs/modules/tiered-storage/pages/overview.adoc
@@ -38,6 +38,12 @@ This means that, if an entry is on the disk, it is relocated to the memory insid
As more and more entries are relocated to the in-memory region of the HybridLog, the memory space occupied by the unreachable entries on disk is reclaimed.
This reclamation is done by a compactor running synchronously with IMap operations on the same partition.
+After a cluster restart, Tiered Storage ensures seamless restoration of data within
+the configured maps from files stored on the designated device.
+This data restoration requires graceful shutdowns using the `HazelcastInstance.shutdown()` method, while the cluster is in the `PASSIVE` state;
+see xref:maintain-cluster:shutdown.adoc#graceful-shutdown[Graceful Shutdown] and xref:maintain-cluster:cluster-member-states.adoc#cluster-states[Cluster States].
+Failure to do so may lead to restart failures. The maps backed by Tiered Storage maintain consistent state synchronization, seamlessly restoring data from files upon restart.
+
== Supported Devices
Hazelcast supports only non-volatile memory express (NVMe) local SSD devices for Tiered Storage.
@@ -47,8 +53,6 @@ While HDDs and some network storage options work with the same file abstraction
- Tiered Storage currently only supports Hazelcast IMap data structure.
-- Data recovery from persisted data is not supported. When a Hazelcast member has Tiered Storage enabled and it fails or shuts down, you cannot use the local Tiered Storage device files for data recovery.
-
- Time-to-live (TTL) expiration is not supported by maps backed by Tiered Storage.
This means that methods, such as `IMap.put`, throw `UnsupportedOperationException` if a TTL value is provided.
If the default TTL setting is present in the map configuration, `InvalidConfigurationException` is thrown during the member startup.