Ask HN: Multiple asset hosts with s3 = impossible?
1 comments
I haven't looked into getting multiple asset hosts to work with S3 myself, but how much asset data do you have? Storing the same data in multiple buckets certainly sounds inelegant, but, on the other hand, storing 1MB in S3 only costs $0.00015 per month...!
The problem seems to be that you can't have multiple domains pointing to a single bucket:
http://developer.amazonwebservices.com/connect/thread.jspa?threadID=27295
Possible workarounds include: - Uploading files to multiple buckets and pulling from them randomly - Uploading files to different buckets and pulling from them with a hash key - Setting a CNAME to point all alternate asset hosts at the primary one - Using Amazon's CDN
Any other ideas? I can't imagine that someone on HN hasn't figured this out already.