Reputation: 1710
What happens when you are downloading an AWS S3 object and you delete the object when the download is in progress? Will the download complete with full object? Or will the download be partial?
Upvotes: 4
Views: 1194
Reputation: 2182
That's one funny question, and I've just did an experiment by below step:
Download it with my browser.
Instantly delete the file on the s3 console with browser.
OR 3. Instantly delete it with PHP deleteObjects function.
Result: Download still goes on until its completion. No file size loss at all.
Upvotes: 8