How to migrate from AWS EFS to Digital Ocean Spaces? Is there a way to transfer from EFS to DO spaces? Or do I need to transfer to S3 before transferring to Spaces? But tried using DataSync, but having problems with mount and location of EFS
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
AWS EFS and DigitalOcean Spaces are quite different. EFS is a network file system, while Spaces is an object storage. You can’t transfer directly from EFS to Spaces like you would with S3-to-S3.
What might work here is to mount your EFS volume on an EC2 instance and then copy the files locally or to a temporary directory and then use a tool like the AWS CLI or
rclone
to upload those files to DigitalOcean Spaces.If you’re using
rclone
, it supports both S3 and Spaces out of the box:- Bobby