0

When moving data between two S3 locations using the AWS CLI, for example:

aws s3 mv s3://bucket/prefix s3://bucket/other-prefix

Is the data downloaded to your local computer and then re-uploaded? Or does it stay in the data center? Is it different for cp vs mv, or if moving data between buckets in different regions/azs?

Nick
  • 121
  • 3
  • The way to work this out is to put a 1GB file into S3 and move it, watching your network usage while it executes. Once you do that please answer your question below. – Tim Nov 17 '22 at 18:05
  • It seems the answer to such a basic question would be easy to find in AWS documentation, but in my searching I have not found it. – Martin_W Jul 10 '23 at 03:10

1 Answers1

2

Did some testing into s3 as mentioned by @tim and after monitoring network usage, I determined that the answer is no, data is not moved across your local network

Vaibhav Panmand
  • 1,038
  • 7
  • 17
Nick
  • 121
  • 3