AR_
AR_

Reputation: 127

Python Client for Google Cloud Storage and large files

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

Answers (1)

Borko Kovacev
Borko Kovacev

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

Related Questions