What is the maximum memory a Google App Engine app may consume?

前端 未结 2 1392
予麋鹿
予麋鹿 2021-02-13 05:47

What is the maximum amount of local memory (not Memcache) each instance of a Google App engine app is allowed to consume?

I couldn\'t find any inform

2条回答
  •  臣服心动
    2021-02-13 06:24

    The maximum memory limit for an App Engine instance depends on the instance class that you choose. The default limit is 128 MB. The following classes are currently available:

    • F1 and B1 - 128 MB
    • F2 and B2 - 256 MB
    • F4 and B4 - 512 MB
    • F4_1G and B4_1G - 1024 MB

    Edit: Second generation instances have double the memory:

    • F1 and B1 - 256 MB
    • F2 and B2 - 512 MB
    • F4 and B4 - 1024 MB
    • F4_HIGHMEM and B4_HIGHMEM - 2048 MB
    • B8 - 2048 MB

提交回复
热议问题