Reputation: 771
Is it 10MB for all files, or 10MB / file, 150MB in total? I'm using Python.
Upvotes: 7
Views: 3968
Reputation: 2230
This appears to have been updated. New limits from https://cloud.google.com/appengine/docs/quotas#Code are:
- Code & Static Data Storage - First 1 GB: Free
- Code & Static Data Storage - Exceeding 1 GB: $ 0.026 per GB per month
No single static data file may be larger than 32MB.
The storage quota applies to the total amount of code and static data stored by all versions of your app. The total stored size of code and static files is listed in the Main Dashboard table. Individual sizes are displayed on the Versions and Backends screens respectively. Free apps may only upload up to 1 GB of code and static data. Paid apps may upload more, but will be charged $ 0.026 per GB per month for any code and static data storage that exceeds 1 GB.
Upvotes: 5
Reputation: 74
Looks like these have been updated.
Current file limit is 10k
Max size of application file: 32M
Full limits:
https://developers.google.com/appengine/docs/java/runtime#Quotas_and_Limits
and
https://developers.google.com/appengine/docs/python/runtime#Quotas_and_Limits
Upvotes: 5
Reputation: 13649
You can upload up to 3,000 files and each code or static files can have up to 10 megabytes, but the total size of the whole application can't exceed 150 megabytes.
The summary is here:
Upvotes: 7