You can migrate data from an SFS Capacity-Oriented file system to an SFS Turbo file system or the other way around.
This solution creates a Linux ECS to connect an SFS Capacity-Oriented file system with an SFS Turbo file system.
mount -t nfs -o vers=3,timeo=600,noresvport,nolock [Mount point of file system 1] /mnt/src
mount -t nfs -o vers=3,timeo=600,noresvport,nolock [Mount point of file system 2] /mnt/dst
rclone copy /mnt/src /mnt/dst -P --transfers 32 --checkers 64 --links --create-empty-src-dirs
Set transfers and checkers based on the system specifications. The parameters are described as follows:
After data synchronization is complete, go to the target file system to check whether data is migrated.
cd /mnt/dst ls | wc -l