vote up 2 vote down star

I'm building app that will store large video files to the server and then user will be able to view them. For my app I'm using GWT + GAE/J and to store files I would like to use S3 account. But as we know that you can upload max 10mb to GAE. I have asked this kind of question before and the answer that I have accepted will work only if you have file less then 10mb. That solution that KevMo have suggested uploads whole files to the server but what if my file is 20mb or 100mb. Is it possible to divide that file into 10mb peaces, send them to GAE and then assemble those files on S3 server. Here is the picture of what I'm trying to accomplish here:

alt text

Thanks

flag

2 Answers

vote up 2 vote down check

Why not have your GWT client upload the video directly to S3? You can have your app engine code create the authentication token or password or whatever S3 calls it, and then your GWT client would send the file straight there. If need be, it could pass back whatever meta data that your app engine code needs.(file size, name, whatever)

see this question for more info on giving users permission to upload to S3:

PS - obviously this doesn't work quite as well if you are doing some kind of processing to the video in your app engine code before uploading it to S3alt text

link|flag
No, I'm not going to do anything to those files, so it is fine to upload them as it to S3. Any suggestions what I can use to upload files straight to S3. – Maksim Jul 12 at 3:33
1  
docs.amazonwebservices.com/AmazonS3/2006-03-01/… – Peter Jul 12 at 22:58
vote up 1 vote down

I'd highly recommend developing your own transfer control instead. Likely it will take the same amount of time.

link|flag
Can you elaborate this little bit more? – Maksim Jul 11 at 0:10

Your Answer

Get an OpenID
or

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