Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Accepted Answer
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:
https://docs.digitalocean.com/products/spaces/how-to/transfer-between-regions/
- Bobby
Heya, @7526fb4de03a4dfcb6a9e88306cbd9
I’ll also recommend using rclone because it works directly with Spaces, so no S3 middleman needed. You don’t need to rsync over SSH to a droplet and then upload because it’s slower and double work.
Regards