Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Appending to a text file in S3

I know how to write and read from a file in S3 using boto. I'm wondering if there is a way to append to a file without having to download the file and re-upload an edited version?

like image 436
masterforker Avatar asked May 04 '17 19:05

masterforker


1 Answers

There is no way to append data to an existing object in S3. You would have to grab the data locally, add the extra data, and then write it back to S3.

like image 117
garnaat Avatar answered Sep 19 '22 06:09

garnaat