English 中文(简体)
页: 1
原标题:Maximum code size for Google App Engine

它是所有档案的10元数据,还是10元数据/档案,总共150元数据? I m using using。

最佳回答

类似情况已经更新。

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

问题回答

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 :

  • maximum total number of files (app files and static files): 3,000
  • maximum size of an application file: 10 megabytes
  • maximum size of a static file: 10 megabytes
  • maximum total size of all application and static files: 150 megabytes

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

任何一个固定数据文档都不得大于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.





相关问题
How to make logging.debug work on Appengine?

I m having a tough time getting the logging on Appengine working. the statement import logging is flagged as an unrecognized import in my PyDev Appengine project. I suspected that this was just an ...

gqlQuery returns object, want list of keys

Is there a way to convert the GqlQuery object to an array of keys, or is there a way to force the query to return an array of keys? For example: items = db.GqlQuery("SELECT __key__ FROM Items") ...

Integrating Google AppEngine with a Thick Client

I want to make a multi-user client-server solution with Java Swing thick client as a front-end and Google AppEngine (Java one) as a back-end. The problem is that GAE provides only web-based forms for ...

sorl.thumbnail : thumbnail is not a valid tag library?

I am trying to install sorl.thumbnail but am getting the following error message: thumbnail is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module ...

热门标签