Am using the boto (2.2.1) backend for django-storages (1.1.4) to upload files to an S3 bucket. It works fine for images, but when I try to upload movie files (small mov, small avi) or an mp3, i get a Broken pipe error.

This is Weird.

Digging into the Django traceback, I get see the following exception:

boto.https_connection.InvalidCertificateException

Which kind of fits the experience I've been having using Cyberduck to inspect the bucket directly: sometimes it complains that I'm getting a mismatch between the cert for *.s3.amazonaws.com and the domain *.s3-external-3.amazonaws.com

Indeed, the bucket logging shows that I'm being served a HTTP 307 temporary redirect. Is it perhaps AWS sending some content types one way and others another, but boto/something can't quite keep up with that? Uploads of movies do seem to hit S3 twice, whereas images hit it once, so it may well be that boto is coping with the 307 fine (and the closed tickets for 307 support in boto are a couple of years old), so it could well be ok and something else is up.

But what? I've gone from a pleasantly productive day to a head end, and it's extremely frustrating.

Any suggestions for what may be up and/or what to try to work around this?

(Note that this fails with the boto S3 backend or the simple S3 backend - it's just that the boto one gives me what looks like a more specific error)

link|improve this question

80% accept rate
1  
Interestingly, if I do it all manually via the shell, using boto.S3Connection and boto.Key etc, the movie file goes up without a hitch (so at least I've got a long-winded workaround) – stevejalim Feb 2 at 20:16
What size are the files? Perhaps it's using a different method to send them (streaming vs all-in-one) and that's hitting an API mismatch? – Joe Feb 3 at 12:45
The png is about 100kb, the mp3 around 400 and the mov 360kb. Not big at all... – stevejalim Feb 3 at 16:20
Try it with a 400k png, if only to rule out file size. – Joe Feb 3 at 16:59
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.