The public documentation referencing the App Engine static data file size limitation can be found under 'Code and static data storage <https://cloud.google.com/appengine/docs/quotas#Code>' where it states: No single static data file may be larger than 32MB.
The public documentation mentioned previously referencing the Blobstore is no longer up to date. I would strongly recommend using Google Cloud Storage instead. It provides the same convenience of creating and serving large blobs or objects with more fine-grained access control and features. According to the 'Upload Objects <https://cloud.google.com/storage/docs/json_api/v1/how-tos/upload>' article, the maximum file size that can be uploaded depends on the method employed. For instance, the JSON API, 'Objects: insert <https://cloud.google.com/storage/docs/json_api/v1/objects/insert>' call allows files stored up to 5 TB in size. The client library, this case in Python, allows one to create, remove and control access settings for Cloud Storage objects. This 'Getting Started <https://cloud.google.com/appengine/docs/python/googlecloudstorageclient/getstarted>' guide shows some examples though does not reveal the uploading file size limitation of this particular medium. On Thursday, January 21, 2016 at 7:54:00 PM UTC-5, Thomas Maerz wrote: > > I don't see in the Quotas and Limits document anywhere referencing the 2GB > limit. > > On Saturday, April 23, 2011 at 1:27:30 AM UTC-5, Robert Kluin wrote: >> >> Yes, they are allowed. Your files can be up to 2GB. >> >> http://code.google.com/appengine/docs/python/blobstore/overview.html#Quotas_and_Limits >> >> >> How are you trying to upload the file? Are you using >> blobstore_handlers.BlobstoreUploadHandler? >> >> >> On Sat, Apr 23, 2011 at 14:21, rainmaker <[email protected]> >> wrote: >> > billing's enabled... but i think there's a 50mb limit to files right >> > now... >> > >> > are 300mb and larger even allowed? I've tried searching... nothing >> > yet.. >> > >> > >> > >> > >> > >> > On Apr 23, 2:02 am, Brandon Donnelson <[email protected]> wrote: >> >> Is billing enabled? This will need to be enabled if not. >> >> >> >> Brandon Donnelsonhttp://gwt-examles.googecode.com >> > >> > -- >> > You received this message because you are subscribed to the Google >> Groups "Google App Engine" group. >> > To post to this group, send email to [email protected]. >> > To unsubscribe from this group, send email to >> [email protected]. >> > For more options, visit this group at >> http://groups.google.com/group/google-appengine?hl=en. >> > >> > >> >> -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/709dc587-59b1-47c8-b3f0-e5f5e56b688e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
