Help Center/ Scalable File Service Turbo/ Best Practices/ Migrating Data to SFS Turbo/ Migrating Data to SFS Turbo Using Direct Connect (rclone)
Updated on 2025-07-28 GMT+08:00

Migrating Data to SFS Turbo Using Direct Connect (rclone)

Solution Overview

You can migrate data from a local NAS to SFS Turbo using rclone over Direct Connect.

In this solution, a Linux ECS is created to connect the local NAS and SFS Turbo, and data is migrated to the cloud using this ECS.

You can also refer to this solution to migrate data from an on-cloud NAS to SFS Turbo. For details, see Migrating Data from On-Cloud NAS to SFS Turbo.

Constraints

  • Only Linux ECSs can be used to migrate data.
  • The UID and GID of your file will no longer be consistent after data migration.
  • The file access modes will no longer be consistent after data migration.
  • Incremental migration is supported, so you can only migrate the changed data.
  • If data is written to the file system after you have run the rclone command to migrate data, data inconsistency may occur.

Prerequisites

  • You have purchased and configured Direct Connect. For details, see Direct Connect User Guide.
  • You have created a Linux ECS.
  • You have created an SFS Turbo file system and obtained its shared path.
  • You have obtained the shared path of the local NAS.

Resource Planning

Table 1 describes the resource planning in this solution.

Table 1 Resource planning

Resource

Example Configuration

Description

ECS

Specifications: 8 vCPUs | 16 GB | c7.2xlarge.2

OS: Linux

Region: CN-Hong Kong

VPC: VPC1

Ensure that the /mnt/src and /mnt/dst directories have been created.

Procedure

  1. Log in to the ECS console.
  2. Log in to the Linux ECS.
  3. Mount the local NAS to the ECS.

    Replace <shared-path-of-the-local-NAS> with the actual NAS address, for example, 192.168.0.0:/. Replace /mnt/src with the actual source path.
    mount -t nfs -o vers=3,timeo=600,noresvport,nolock,tcp <shared-path-of-the-local-NAS> /mnt/src

  4. Mount the SFS Turbo file system to the ECS.

    Replace <shared-path-of-the-SFS-Turbo-file-system> with the actual SFS Turbo file system address, for example, 192.168.0.0:/. Replace /mnt/dst with the actual destination path.
    mount -t nfs -o vers=3,timeo=600,noresvport,nolock,tcp <shared-path-of-the-SFS-Turbo-file-system> /mnt/dst

  5. Install rclone on the Linux ECS.

    wget https://downloads.rclone.org/v1.53.4/rclone-v1.53.4-linux-amd64.zip --no-check-certificate
    unzip rclone-v1.53.4-linux-amd64.zip
    chmod 755 ./rclone-*/rclone
    cp ./rclone-*/rclone /usr/bin/
    rm -rf ./rclone-*

  6. Synchronize data to the SFS Turbo file system.

    rclone copy /mnt/src /mnt/dst -P --transfers 32 --checkers 64 --links --create-empty-src-dirs

    The parameters are described as follows. Set transfers and checkers based on the system specifications.

    • --transfers: number of files that can be transferred concurrently
    • --checkers: number of local files that can be scanned concurrently
    • -P: data copy progress
    • --links: replicates the soft links from the source. They are saved as soft links in the destination.

      --copy-links: replicates the content of files to which the soft links point. They are saved as files rather than soft links in the destination.

    • --create-empty-src-dirs: replicates the empty directories from the source to the destination.

    After data synchronization is complete, go to the SFS Turbo file system to check whether data is migrated.

Verification

  1. Log in to the Linux ECS.
  2. Check the file synchronization results on the destination server. This command only compares the file quantity and size. If the file quantity and size are the same as the source, it is considered that data is migrated successfully.

    rclone check /mnt/src /mnt/dst --size-only --checkers 64

  3. (Optional) To check data consistency, use the following command to compare the hash values. If the hash values are the same, data is migrated successfully.

    rclone check /mnt/src /mnt/dst --checksum --checkers 64

Migrating Data from On-Cloud NAS to SFS Turbo

To migrate data from an on-cloud NAS to your SFS Turbo file system, ensure that the NAS and SFS Turbo file system are in the same VPC, or you have established the network using Cloud Connect.

For details about how to configure Cloud Connect, see Cloud Connect User Guide.