Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know Amazon S3 added the multi-part upload for huge files. That's great. What I also need is a similar functionality on the client side for customers who get part way through downloading a gigabyte plus file and have errors.

I realize browsers have some level of retry and resume built in, but when you're talking about huge files I'd like to be able to pick up where they left off regardless of the type of error out.

Any ideas?

Thanks, Brian

share|improve this question

3 Answers

S3 supports the standard HTTP "Range" header if you want to build your own solution.

S3 Getting Objects

share|improve this answer

I use aria2c. For private content, you can use "GetPreSignedUrlRequest" to generate temporary private URLs that you can pass to aria2c

share|improve this answer

Don't waste your time trying to build your own downloader. This problem has been solved many times over already.

Get your users to use a robust download manager like Free Download Manager. These will enable you to download multiple parts at once and resume failed downloads.

share|improve this answer
Nice. A down vote without a comment :( – Geoff Appleford Jan 28 '11 at 9:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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