---
title: "Redis cluster backups"
sidebar_label: "Backups"
sidebar_position: 11
description: "Redis cluster backup schedule, backup retention period, and how to restore a cluster from a backup"
---

import Formbricks from '@theme/MDXComponents/Formbricks'
import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
import MoreVerticalIcon from '@selectel/docux/icons/more-vertical'
import {TabItemLabel} from '@selectel/docux/components'

# Redis cluster backups

In Redis Managed Databases, cluster backups are created automatically — you do not need to configure them yourself or keep track of the backup process.

The WAL-G tool is used to create cluster backups.

Backups are stored in RDB format, isolated from other users' backups.

Backups cannot be downloaded. Automatic backup creation cannot be disabled.

## Backup schedule \{#backup-schedule}

* full cluster backups are created once a day;
* incremental (delta) backups are not created.

## Backup retention period \{#backup-retention-period}

Backups are stored for 7 days, after which they are deleted.

Backups of deleted clusters are stored for 7 days from the moment of creation. From a backup, you can [restore a cluster](#restore-cluster).

## Restore a cluster \{#restore-cluster}

You can restore a cluster from a backup to any point in time within the last 7 days.

Restoration creates a new database cluster; you can change the name, configuration (with the same or larger disk size), number of nodes, network, and DBMS settings. [Location](/infrastructure/locations.mdx), DBMS type, and version cannot be changed.

<Tabs queryString="restore-cluster">
  <TabItem value="if-cluster-not-deleted" default>
    <TabItemLabel>
      If the cluster is not deleted
    </TabItemLabel>

    1. In the [Control panel](https://my.selectel.ru/vpc/default/dbaas/), on the top menu click **Products** and select **Managed Databases**.
    2. Open the **Active** tab.
    3. In the cluster menu <MoreVerticalIcon />, select **Restore**.
    4. Choose how to restore the cluster—from the last available backup or from any backup created within the last 7 days.
    5. Click **Continue**.
    6. You will be redirected to the new cluster creation page. If necessary, change the cluster settings; more details in the instructions [Create a Cluster](/managed-databases/redis/create-cluster.mdx).
    7. Click **Create Cluster**.
    8. After the cluster is restored, the node addresses will change — update them in the application that connects to the cluster.
  </TabItem>

  <TabItem value="if-cluster-deleted">
    <TabItemLabel>
      If the cluster is deleted
    </TabItemLabel>

    1. In the [Control panel](https://my.selectel.ru/vpc/default/dbaas/), on the top menu, click **Products** and select **Cloud Databases**.
    2. Open the **Deleted** tab.
    3. In the cluster menu <MoreVerticalIcon />, select **Restore**.
    4. Choose how to restore the cluster—from the last available backup or to a specific point in time within the last 7 days.
    5. Click **Continue**.
    6. You will be redirected to the new cluster creation page. If necessary, change the cluster settings — more details in the instructions [Create a Cluster](/managed-databases/redis/create-cluster.mdx).
    7. Click **Create Cluster**.
    8. After the cluster is restored, the node addresses will change — update them in the application that connects to the cluster.
  </TabItem>
</Tabs>

<Formbricks />
