Using Direct Connect to Migrate Data (rclone)
Solution Overview
You can migrate data from a local NAS to SFS Turbo using Direct Connect and the rclone tool.
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.
Limitations and 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 that only changed data is migrated.
Prerequisites
- You have enabled 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 have obtained the mount point of the file system.
- You have obtained the mount point of the local NAS.
Resource Planning
Table 1 describes the resource planning in this solution.
Procedure
- Log in to the ECS console.
- Log in to the created Linux ECS to access the local NAS and SFS Turbo file system.
- Run the following mount command to access the local NAS:
mount -t nfs -o vers=3,timeo=600,noresvport,nolock Mount point of the local NAS /mnt/src
- Run the following mount command to access the SFS Turbo file system:
mount -t nfs -o vers=3,timeo=600,noresvport,nolock Mount point of the file system /mnt/dst
- Run the following commands on the Linux ECS to install the rclone tool:
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 0755 ./rclone-*/rclone cp ./rclone-*/rclone /usr/bin/ rm -rf ./rclone-*
- Run the following command to synchronize data:
rclone copy /mnt/src /mnt/dst -P --transfers 32 --checkers 64 --copy-links
Set transfers and checkers based on the system specifications. The parameters are described as follows:
- transfers: number of files that can be transferred concurrently
- checkers: number of local files that can be scanned concurrently
- P: data copy progress
- copy-links: copying soft links
After data synchronization is complete, go to the SFS Turbo file system to check whether data is migrated.
Verification
- Log in to the created Linux ECS.
- Run the following commands on the destination server to verify file synchronization:
cd /mnt/dst ls | wc -l
- If the data volume is the same as that on the source server, the data is migrated successfully.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.