Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Virtual Private Cloud
  • Getting started
    • All tutorials
    • Architecture and protection of a basic internet service
    • DHCP settings for working with a corporate DNS server
    • Installing the Cisco CSR 1000v virtual router
    • Installing the Mikrotik CHR virtual router
    • Connecting to a cloud network using OpenVPN
    • Configuring Cloud DNS to access a Managed Service for ClickHouse® cluster from other cloud networks
    • Secure user access to cloud resources based on WireGuard VPN
    • Creating and configuring a UserGate gateway in proxy server mode
    • Creating and configuring a UserGate gateway in firewall mode
    • Implementing fault-tolerant use cases for network VMs
    • Creating a tunnel between two subnets using OpenVPN Access Server
    • Creating a bastion host
    • Migrating an HDFS Yandex Data Processing cluster to a different availability zone
    • Configuring a network for Yandex Data Processing
    • Network between folders
    • Implementing a secure high-availability network infrastructure with a dedicated DMZ based on the Check Point NGFW
    • Cloud infrastructure segmentation with the Check Point next-generation firewall
    • Connecting to Object Storage from Virtual Private Cloud
    • Connecting to Container Registry from Virtual Private Cloud
    • Using Yandex Cloud modules in Terraform
    • Deploying an Always On availability group with an internal network load balancer
    • Configuring Cloud Interconnect access to cloud networks behind NGFWs
    • Automating tasks using Managed Service for Apache Airflow™
    • Setting up network connectivity between BareMetal and Virtual Private Cloud subnets
  • DDoS Protection
  • Access management
  • Terraform reference
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • Required paid resources
  • Create a cluster via import in Terraform
  • Copy the data to the new cluster
  • Delete the initial cluster
  1. Tutorials
  2. Migrating an HDFS Yandex Data Processing cluster to a different availability zone

Migrating an HDFS Yandex Data Processing cluster to a different availability zone

Written by
Yandex Cloud
Updated at May 5, 2025
  • Required paid resources
  • Create a cluster via import in Terraform
  • Copy the data to the new cluster
  • Delete the initial cluster

Subclusters of each Yandex Data Processing cluster reside in the same cloud network and availability zone. You can migrate a cluster to a different availability zone. The migration process depends on the cluster type:

  • The following describes how to migrate HDFS clusters.
  • For information on migrating lightweight clusters, follow the tutorial.

Note

The Intel Broadwell platform is not available for clusters with hosts residing in the ru-central1-d availability zone.

To migrate an HDFS cluster:

  1. Create a cluster via import in Terraform.
  2. Copy the data to the new cluster.
  3. Delete the initial cluster.

Before you begin, create a subnet in the availability zone to which you are migrating the cluster.

Required paid resourcesRequired paid resources

The support cost includes the fee for the Yandex Data Processing clusters (see Yandex Data Processing pricing).

Create a cluster via import in TerraformCreate a cluster via import in Terraform

To create a Yandex Data Processing cluster in a different availability zone with the same configuration as the initial cluster, import the initial cluster's configuration into Terraform:

Terraform
  1. If you do not have Terraform yet, install it.

  2. Get the authentication credentials. You can add them to environment variables or specify them later in the provider configuration file.

  3. Configure and initialize a provider. There is no need to create a provider configuration file manually, you can download it.

  4. Place the configuration file in a separate working directory and specify the parameter values. If you did not add the authentication credentials to environment variables, specify them in the configuration file.

  5. In the same working directory, place a .tf file with the following contents:

    resource "yandex_dataproc_cluster" "old" { }
    
  6. Write the initial cluster ID to the environment variable:

    export DATAPROC_CLUSTER_ID=<cluster_ID>
    

    You can request the ID with the list of clusters in the folder.

  7. Import the initial cluster settings into the Terraform configuration:

    terraform import yandex_dataproc_cluster.old ${DATAPROC_CLUSTER_ID}
    
  8. Get the imported configuration:

    terraform show
    
  9. Copy it from the terminal and paste it into the .tf file.

  10. Place the file in the new imported-cluster directory.

  11. Modify the copied configuration so that you can create a new cluster from it:

    • Specify the new cluster name in the resource string and the name parameter.

    • Delete the created_at, host_group_ids, id, and subcluster_spec.id parameters.

    • Change the availability zone in the zone_id parameter.

    • In the subnet_id parameters of the subcluster_spec sections, specify the ID of the new subnet created in the required availability zone.

    • Change the SSH key format in the ssh_public_keys parameter. Source format:

      ssh_public_keys = [
        <<-EOT
          <key>
        EOT,
      ]
      

      Required format:

      ssh_public_keys = [
        "<key>"
      ]
      
  12. Get the authentication credentials in the imported-cluster directory.

  13. In the same directory, configure and initialize a provider. There is no need to create a provider configuration file manually, you can download it.

  14. Place the configuration file in the imported-cluster directory and specify the parameter values. If you did not add the authentication credentials to environment variables, specify them in the configuration file.

  15. Make sure the Terraform configuration files are correct using this command:

    terraform validate
    

    If there are any errors in the configuration files, Terraform will point them out.

  16. Create the required infrastructure:

    1. Run this command to view the planned changes:

      terraform plan
      

      If you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.

    2. If everything looks correct, apply the changes:

      1. Run this command:

        terraform apply
        
      2. Confirm updating the resources.

      3. Wait for the operation to complete.

    All the required resources will be created in the specified folder. You can check resource availability and their settings in the management console.

Copy the data to the new clusterCopy the data to the new cluster

  1. Make sure no operations or jobs are being performed on the HDFS files and directories you want to copy.

    To see a list of running operations and jobs:

    1. In the management console, select Yandex Data Processing.
    2. Click the initial cluster name and select the Operations tab, then select Jobs.

    Note

    Until you have completed the migration, do not run any operations or jobs modifying the HDFS files and directories you are copying.

  2. Connect via SSH to the master host of the initial cluster.

  3. Get a list of directories and files to be copied to the new cluster:

    hdfs dfs -ls /
    

    Instead of the / symbol, you can specify the directory you need.

  4. To test copying data to the new Yandex Data Processing cluster, create test directories:

    hdfs dfs -mkdir /user/foo &&\
    hdfs dfs -mkdir /user/test
    

    In the example below, only the /user/foo and /user/test test directories are copied for demonstration purposes.

  5. Connect via SSH to the master host of the new cluster.

  6. Create a file named srclist:

    nano srclist
    
  7. Add to it a list of directories intended for migration:

    hdfs://<initial_cluster_FQDN>:8020/user/foo
    hdfs://<initial_cluster_FQDN>:8020/user/test
    

    In the command, specify the FQDN of the master host of the initial cluster. For information on how to obtain an FQDN, read the tutorial.

  8. Put the srclist file into the /user HDFS directory:

    hdfs dfs -put srclist /user
    
  9. Create a directory to copy the data to. In the example, it is the copy directory, nested in /user.

    hdfs dfs -mkdir /user/copy
    
  10. Copy the data between clusters using DistCp:

    hadoop distcp -f hdfs://<new_cluster_FQDN>:8020/user/srclist \
    hdfs://<new_cluster_FQDN>:8020/user/copy
    

    In the command, specify the FQDN of the master host of the new cluster.

    As a result, all directories and files specified in the srclist will be copied to the /user/copy directory.

    If copying a large volume of data, use the -m <maximum_simultaneous_copies> flag in the command to limit network bandwidth consumption. For more information, see the DistCp documentation.

    You can view the data volume you copy in the HDFS web interface. To open it:

    1. In the management console, select Yandex Data Processing.
    2. Click the initial cluster name.
    3. On its page, in the UI Proxy section, click the HDFS Namenode UI link.

    The DFS Used field states the initial cluster's data volume in HDFS.

  11. Make sure the data is copied:

    hdfs dfs -ls /user/copy
    

This way you can copy all the data you need. To do this, specify the required directories and files in srclist.

Delete the initial clusterDelete the initial cluster

By following this guide.

Was the article helpful?

Previous
Creating a bastion host
Next
Configuring a network for Yandex Data Processing
© 2025 Direct Cursus Technology L.L.C.