Not able to change the frontend instance class in appengine application

后端 未结 3 1327
温柔的废话
温柔的废话 2021-01-22 02:00

Specified in app.yaml

instance_class: F2 automatic_scaling: min_idle_instances: 5 max_idle_instances: automatic

3条回答
  •  隐瞒了意图╮
    2021-01-22 02:41

    I could not find a place where to check specifically the instance type.

    The only way I could verify that my instance was an F2, as specified, was using a request which triggered the instance memory usage to go way over the F1 class limit, causing the instance to be terminated (which was the reason for which I configured an F2 instead of the default). After deploying the F2 config the memory usage of the running instance happily went above the F1 class limit without the instance being terminated.

    The billing status info is misleading, all classes are billed in F1 "units", see the note at the end of the Instance scaling and class section:

    Important: When you are billed for instance hours, you will not see any instance classes in your billing line items. Instead, you will see the appropriate multiple of instance hours. For example, if you use an F4 instance for one hour, you do not see "F4" listed, but you will see billing for four instance hours at the F1 rate.

提交回复
热议问题