Reputation: 336
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?
Upvotes: 4
Views: 433
Reputation: 12020
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.
Upvotes: 4