From fcce87d9e48b86dfccc40901e6599b272b3eab2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczy=C5=84ski?= <2000michal@wp.pl> Date: Wed, 3 Apr 2024 13:12:23 +0200 Subject: [PATCH] fix(docs): improve restore schema topology requirement Fixes #3782 --- docs/source/restore/index.rst | 2 -- docs/source/restore/restore-schema.rst | 3 ++- docs/source/restore/restore-tables.rst | 5 +++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/restore/index.rst b/docs/source/restore/index.rst index 3fb6b0b0c6..a07c412ea6 100644 --- a/docs/source/restore/index.rst +++ b/docs/source/restore/index.rst @@ -20,8 +20,6 @@ Restore and backups are scheduled in the same manner: you can start, stop, resum .. note:: If you are using ScyllaDB Manager deployed by ScyllaDB Operator, see dedicated `ScyllaDB Operator documentation `_. -.. note:: Restore procedure works with any cluster topologies, so backed-up cluster can have different number of nodes than restore destination cluster. - .. warning:: Restore works only when ScyllaDB version of backed-up cluster is the same or older than ScyllaDB version of restore destination cluster. diff --git a/docs/source/restore/restore-schema.rst b/docs/source/restore/restore-schema.rst index 38795d20a8..4e24f0b540 100644 --- a/docs/source/restore/restore-schema.rst +++ b/docs/source/restore/restore-schema.rst @@ -8,7 +8,8 @@ Restore schema .. include:: _common/restore-raft-schema-warn.rst -In order to restore Scylla cluster schema use :ref:`sctool restore ` with ``--restore-schema`` flag. +| In order to restore Scylla cluster schema use :ref:`sctool restore ` with ``--restore-schema`` flag. +| The restore schema procedure works with any cluster size, so the backed-up cluster can have a different number of nodes per data center than the restore destination cluster. However, it is important that the restore destination cluster consists of at least all of the data centers present in the backed-up cluster. Prerequisites ============= diff --git a/docs/source/restore/restore-tables.rst b/docs/source/restore/restore-tables.rst index e23261a344..75ef0e5d19 100644 --- a/docs/source/restore/restore-tables.rst +++ b/docs/source/restore/restore-tables.rst @@ -4,9 +4,10 @@ Restore tables .. note:: Currently, Scylla Manager does not support restoring content of `CDC log tables `_. -To restore the content of the tables (rows), use the :ref:`sctool restore ` command with the ``--restore-tables`` flag. +| To restore the content of the tables (rows), use the :ref:`sctool restore ` command with the ``--restore-tables`` flag. +| The restore tables procedure works with any cluster topologies, so the backed-up cluster can have a different number of nodes or data centers than the restore destination cluster. -You can add the ``--keyspace`` flag to define the base tables that will be restored. All Materialized Views and Secondary Indexes of those tables will be automatically recreated in order to ensure the correct data state. +| You can add the ``--keyspace`` flag to define the base tables that will be restored. All Materialized Views and Secondary Indexes of those tables will be automatically recreated in order to ensure the correct data state. Prerequisites =============