vote up 2 vote down star
1

I've uploaded a bunch of images to Amazon S3, and now want to add a Cache-Control header to them.

Can the header be updated without downloading the entire image? If so, how?

flag

63% accept rate

3 Answers

vote up 3 vote down check

It's beta functionality, but you can specify new meta data when you copy an object. Specify the same source and destination for the copy, and this has the effect of just updating the meta data on your object.

PUT /myObject HTTP/1.1
Host: mybucket.s3.amazonaws.com  
x-amz-copy-source: /mybucket/myObject  
x-amz-metadata-directive: REPLACE  
x-amz-meta-myKey: newValue
link|flag
vote up 0 vote down

Actually you can copy a file within S3 storage to the same location and replace http headers. This way you don't have to re-upload the file from local computer to S3. This is how we do it in CloudBerry Explorer

link|flag
Does it do the copy in-place, or do you need to pull it to your machine and push it back to S3? – Scott Oct 28 at 14:48
It will do a copy in-place. It will not pull it to your local machine – cloudberryman Nov 6 at 14:08
vote up -1 vote down

I'm afraid that this is not possible with the current API. S3 does not allow changing headers on existing files. So, you will have to upload the entire file again.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.