基于HTTP请求数的HPA在部署时自动缩放

问题描述 投票:0回答:1

根据HTTP请求率,我对HPA配置有疑问。我使用的是基于Prometheus度量标准的比率sum(rate(http_server_requests_seconds_count[5m])),但是在启动时,尽管没有收到HTTP请求,HPA仍会自动扩展到最大Pod数。请参阅下面来自kubectl的摘录中的描述HPA,它显示了它正在按指标扩展,并且这种情况在部署后几秒钟内就会发生。

Normal  SuccessfulRescale  23m (x4 over 128m)   horizontal-pod-autoscaler  New size: 2; reason: pods metric rate_5m_http_server_requests_seconds_count above target
Normal  SuccessfulRescale  23m (x4 over 128m)   horizontal-pod-autoscaler  New size: 3; reason: pods metric rate_5m_http_server_requests_seconds_count above target

是否有可能告诉Kubernetes在最初的N秒/分钟内不进行扩展,还是有其他方法解决此问题?

kubernetes autoscaling kubernetes-hpa
1个回答
0
投票
我将其发布为社区Wiki,以提高可见度。
© www.soinside.com 2019 - 2024. All rights reserved.