Reputation: 127
In the documentation, there is no hard limits on file sizes but when I try to upload 100MB files, it fails without any error logs on administration portal. Has anyone see this before? What's the best way to upload large files (100MB+ < 2GB) on app engine?
Upvotes: 1
Views: 875
Reputation: 1020
The documentation states the following:
Incoming Bandwidth: The amount of data received by the application from requests. Each incoming HTTP request can be no larger than 32MB.
This includes:
Data received by the application in secure requests and non-secure requests
Uploads to the Blobstore
Data received in response to HTTP requests by the URL fetch service
https://cloud.google.com/appengine/docs/quotas#Requests
Upvotes: 2