I'm using Amazon S3 to store some mp3 files. My web application, uses the Soundmanager2 javascript library to load the files from the Amazon bucket, and play them to users.

When the first user clicks on an mp3, soundmanager starts playing the file, and as intended, caches the rest of the song as it is being played. Problem is, if a second user clicks on the same mp3, he must wait until the first user caches the whole song, which is unacceptable for my website.

I understand that Amazon S3 somehow 'streams' the file exclusively to the first request. Is there a way to be able to use that file simultaneously, i.e. users be able to play the same mp3's at the same time?

Also, would the CloudFront functionality solve this issue?

Thank you for your help! Alex

(By the way, my application is built on Ruby on Rails 3, and hosted on Heroku)

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

There is no limitation in S3 that restricts simultaneous downloads of a single object.

I would suggest that you use a tool, like Charles, to inspect the HTTP requests and see if another service is causing the second client's request to be delayed.

link|improve this answer
You are absolutely right! I was playing the mp3 file from two separate tabs of the same browser. I called a friend of mine, and asked him to test playing the file at the same time with me, and it worked! Guess Amazon only allows simultaneous connections from different locations. Anyway, many thanks for the help! Much appreciated! – Alex Feb 14 '11 at 20:23
feedback

Your Answer

 
or
required, but never shown

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