vote up 3 vote down star
4

Hi guys, I know this has been asked before but there is really not a clear answer. My problem is I built a file upload script for GAE and only found out after, that you can only store files up to aprox. 1MB in the data store. I can stop you right here if you can tell me that if I enable billing the 1MB limit is history but I doubt it.

I need to be able to upload up to 20mb per file so I thought maybe I can use Amazon's S3. Any ideas on how to accomplish this?

I was told to use a combination of GAE + Ec2 and S3 but I have no idea how this would work.

Thanks, Max

flag

3 Answers

vote up 6 vote down check

From the Amazon S3 documentation:

  1. The user opens a web browser and accesses your web page.

  2. Your web page contains an HTTP form that contains all the information necessary for the user to upload content to Amazon S3.

  3. The user uploads content directly to Amazon S3.

GAE prepares and serves the web page, a speedy operation. You user uploads to S3, a lengthy operation, but that is between your user's browser and Amazon; GAE is not involved.

Part of the S3 protocol is a *success_action_redirect*, that lets you tell S3 where to aim the browser in the event of a successful upload. That redirect can be to GAE.

link|flag
Ok sounds great and I will definitely do it like this. How would you go ahead if you wanted to store information about the file on GAE Data Store? Like the user who stored it and the mime-type for example? – mistero Jun 10 at 0:49
Store that information when the user requests the 'redirect' page. You can do a HEAD request on the newly-uploaded file to fetch the metadata, if necessary. – Nick Johnson Jun 10 at 9:25
What about security issues? I mean there is no way to validate the data (except AJAX) in the form before submitting it to S3 right? So basically if I set the max. file-size within the form like Amazons suggests it you can just write your own form and upload to my bucket? And the meta-data I would add within the form can also easily be modified... – mistero Jun 10 at 9:46
Never mind. I found the encrypted policy file ;)! Thanks so much for your help guys! I am new to Stack Overflow but this is amazing! – mistero Jun 10 at 9:50
vote up 2 vote down

Google App Engine and EC2 are competitors. They do the same thing, although GAE provides an environment for your app to run in with strict language restrictions, while EC2 provides you a virtual machine ( think VMWare ) on which to host your application.

S3 on the other hand is a raw storage api. You can use a SOAP or REST api to access it. If you want to stick with GAE, you can simply use the Amazon S3 Python Library to make REST calls from Python to S3.

You will, of course, have to pay for usage on S3. Its amazing how granular their billing is. When getting started I was literally charged 4 cents one month.

link|flag
Okay, so far so good. But if I have a 20MB file and I use the Amazon S3 Python Library to send that file to S3...won't GAE kill the process because it takes longer than 30 seconds? – mistero Jun 9 at 23:01
To be honest, I dont really know GAE's limitations, I just looked at it briefly and its flaws were way to apparent and limiting for my particular uses. To be honest, outside the fact they have a free edition available, I see very little to recommend it. – Serapth Jun 9 at 23:10
1  
I'm pretty sure he already knew all this - and it's not what he was asking. – Nick Johnson Jun 10 at 9:26
vote up 0 vote down

Some Google App Engine + S3 links:

Previous related post... 10mb limit.

This link demonstrates small file uploads. I haven't found an example of large uploads yet...

This link shows a different approach, (with a fix for a known issue)

link|flag

Your Answer

Get an OpenID
or

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