hoju
hoju

Reputation: 29452

How to process large files on gae

I want my app to download an XML file and process it daily. The XML file comes in a ~100MB zip file - ~1GB when extracted. The processed output is less than 1MB.

I noticed the URL fetch (and urllib) response size quota is 32MB: http://code.google.com/appengine/docs/python/urlfetch/overview.html#Quotas_and_Limits

Is there a workaround?

Upvotes: 0

Views: 243

Answers (1)

giodamelio
giodamelio

Reputation: 5605

You will need to use Blobstores

Upvotes: 2

Related Questions