根据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秒/分钟内不进行扩展,还是有其他方法解决此问题?