Ask for Help
"When attempting to upload files with the aws-s3 gem I am receiving a lot of timeouts. This seems to happen with both small and large files. Has anyone run into this before?"
It was hypothesized that this could be the result of a slow internet connection and saturating the upload stream. Does anyone know of a fix for s3 timeouts?

Retry loop is what I do
Did you ever get this worked out? I have been wrestling with this issue for a couple of weeks. Any insight?
Alex,
We are almost sure the problem we were having was due to a saturated upstream connection. Ideally we would have found some way to throttle it back.
The quick fix, which greatly reduced the timeouts, was to change the read_timeout on the S3 gem. There is no publicly exposed way of doing this, we had to monkey patch the AWS::S3::Connection::create_connection method. You can either alias_method_chain it, or just re-implement it and set http.read_timeout = 300 or some other high value.