Does anyone know if there is a possibility to write data to certain file position that is located on Amazon.S3?
For example, how can i write 100 byte chunk of data to file on Amazon.S3 with offset of 1000 bytes?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No I believe it’s not possible to edit any file in-situ on Amazon S3 without downloading it. It’s a storage space, just like your hard-disk, where you usually have to fetch the file into memory for editing and then again put it back(save it).
There are plenty of APIs available to do that. For java you have AWS-SDK.