Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Stackland
  • What's new
  • Installation
    • All tutorials
    • Installing Stackland on Yandex BareMetal
    • Installing Stackland on Yandex BareMetal via PXE
    • Installing Stackland on Yandex Cloud VMs
    • Setting up external access to a pod in a cluster
    • All guides
        • Creating a ClickHouse® cluster
        • Updating cluster settings
        • Create a backup
        • Recovering a cluster
        • Deleting a cluster
        • Create database
        • Update database
        • Deleting a database
        • Creating a role
        • Editing a role
        • Deleting a role
        • Creating a user
        • Updating a user
        • Deleting a user
    • Projects
    • Resource model
    • Scaling a cluster
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting

In this article:

  • Using the CLI
  • Using the management console
  1. Step-by-step guides
  2. Databases
  3. Managed Service for ClickHouse®
  4. Recovering a cluster

Recovering a cluster

Written by
Yandex Cloud
Updated at May 5, 2026
View in Markdown
  • Using the CLI
  • Using the management console

If you have lost a ClickHouse® cluster in a project, you can recover it.

Using the CLIUsing the CLI

spec.clickhouse.recovery supports two recovery options:

  • fullRecovery: Recovery of the whole cluster from one full backup. Specify the name of the ClickhouseBackup resource in spec.clickhouse.recovery.fullRecovery.backup.name. A good option if you have a full cluster backup.
  • shardsRecovery: Recovery by shards from different backups. In spec.clickhouse.recovery.shardsRecovery.backups[], specify an element with the following fields for each shard:
    • backup.name: Name of the ClickhouseBackup resource for the shard.
    • shard: Shard ID (e.g., shard-1 or shard-2) must match shards[].id in the cluster specification.

List of backups: kubectl get ClickhouseBackup -n <project_name>.

  1. Create the ClickhouseCluster resource file, e.g., touch clickhousecluster-from-backup.yaml.

  2. Open the file and paste the configuration for recovery:

    From one full backup (fullRecovery)
    By shards (shardsRecovery)

    Substitute into spec.clickhouse.recovery.fullRecovery.backup.name the name of the backup to restore the whole cluster from.

    apiVersion: clickhouse.stackland.yandex.cloud/v1alpha1
    kind: ClickhouseCluster
    metadata:
      labels:
        app.kubernetes.io/name: ch-stackland-operator
        app.kubernetes.io/managed-by: kustomize
      name: ch-sample-full
    spec:
      clickhouse:
        version: "25.3"
        enableSuperuserAccess: true
        superuserSecretRef:
          name: "ch-sample-superuser"
        recovery:
          fullRecovery:
            backup:
              name: your_backup_full_name  # kubectl get ClickhouseBackup -n <namespace>
      backup:
        storage:
          type: stackland-storage
        schedule: "0 0 * * * *"
        deltaMaxSteps: 5
    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: ch-sample-superuser
    type: Opaque
    stringData:
      password: "your_password"
      username: "your_username"
    

    For each shard, specify in spec.clickhouse.recovery.shardsRecovery.backups[] an element with backup.name (name of backup for the shard) and shard (shard ID). The number of elements must match the number of shards in the cluster.

    apiVersion: clickhouse.stackland.yandex.cloud/v1alpha1
    kind: ClickhouseCluster
    metadata:
      labels:
        app.kubernetes.io/name: ch-stackland-operator
        app.kubernetes.io/managed-by: kustomize
      name: ch-sample-full
    spec:
      clickhouse:
        version: "25.3"
        shards:
          - id: "shard-1"
            weight: 1
            settings:
            instances: 2
            storage:
    #          storageClass: "your-storage-class"
              size: 2Gi
          - id: "shard-2"
            weight: 2
            settings:
            instances: 1
            storage:
    #          storageClass: "your-storage-class"
              size: 2Gi
        storage:
    #      storageClass: "your-storage-class"
          size: 2Gi
        resources:
          requests:
            cpu: "500m"
            memory: "1Gi"
          limits:
            cpu: "1"
            memory: "2Gi"
        enableSuperuserAccess: true
        superuserSecretRef:
          name: "ch-sample-superuser"
        recovery:
          shardsRecovery:
            backups:
              - backup:
                  name: your_backup_shard_1_name
                shard: "shard-1"
              - backup:
                  name: your_backup_shard_2_name
                shard: "shard-2"
      keeper:
        instances: 3
        storage:
    #      storageClass: "your-storage-class"
          size: 1Gi
        resources:
          requests:
            cpu: "500m"
            memory: "1Gi"
          limits:
            cpu: "1"
            memory: "2Gi"
      backup:
        storage:
          type: stackland-storage
        schedule: "0 0 * * * *"
    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: ch-sample-superuser
    type: Opaque
    stringData:
      password: "your_password"
      username: "your_username"
    
  3. Apply the manifest: kubectl apply -f clickhousecluster-from-backup.yaml -n <project_name>. Optionally, you can specify the project name in the metadata.namespace resource property and skip it in the command.

Using the management consoleUsing the management console

  1. If you have not opened a project yet, select one.
  2. In the left-hand menu, select ClickHouse® Clusters.
  3. Go to the Backups tab.
  4. In the row with the backup you need, click Restore.
  5. Check the cluster settings and modify them, if required:
  6. Click Restore.

That is it! Your cluster has been recovered and now appears in the project's cluster list.

Was the article helpful?

Previous
Create a backup
Next
Deleting a cluster
© 2026 Direct Cursus Technology L.L.C.