作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
自动缩放可帮助您根据负载自动添加或删除计算引擎。 GCP 中自动扩缩的先决条件是实例模板和托管实例组。
这个问题是另一个question's answer的一部分,这是关于构建自动缩放和负载平衡的后端。
我写了以下答案,其中包含在 GCP 中设置自动缩放的步骤。
最佳答案
自动缩放是 的一项功能托管实例组 在 GCP 中。这有助于通过扩展实例来处理非常高的流量,同时它还会在没有流量时缩减实例,从而节省大量资金。
要设置自动缩放,我们需要以下内容:
gcloud compute instance-groups managed \
create autoscale-managed-instance-group \
--base-instance-name autoscaled-instance \
--size 3 \
--template sample-template \
--region asia-northeast1
gcloud compute instance-groups managed \
set-autoscaling \
autoscale-managed-instance-group \
--max-num-replicas 6 \
--min-num-replicas 2 \
--target-cpu-utilization 0.60 \
--cool-down-period 120 \
--region asia-northeast1
关于google-cloud-platform - 如何在 Google Cloud Platform 中配置托管实例组和自动缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41541761/
我是一名优秀的程序员,十分优秀!