1

I'm syncing a directory containing 200k files (140GB) to a bucket using the following command

aws s3 sync target s3:/awesomebucket/key/prefix/ --region ap-southeast-2

I took along time. The network was not so fast. And it barely upload 5GB files.

Ouput Window

If I CTRL+C on the console, what is the consequences? Will it continue the progress when I re-run the program?

1 Answers1

1

Best guess is it will stop, and there may be a partially uploaded file, but that should get removed. I wouldn't expect any repercussion or problems. Try parallel uploads if latency is your issue.

Tim
  • 31,888
  • 7
  • 52
  • 78