一、核心概念
Horizontal Pod Autoscaling,简称HPA,是Kubernetes中实现POD水平自动伸缩的功能。云计算具有水平弹性的特性,这个是云计算区别于传统IT技术架构的主要特性。对于Kubernetes中的POD集群来说,HPA可以实现很多自动化功能,比如当POD中业务负载上升的时候,可以创建新的POD来保证业务系统稳定运行,当POD中业务负载下降的时候,可以销毁POD来提高资源利用率。
HPA控制器默认每隔30秒就会运行一次,如果要修改间隔时间,可以设置horizontal-pod-autoscaler-sync-period参数。
二、k8s 1.7新特性
1、HPA触发条件新特性(α特性)
在Kubernetes1.7中,对HorizontalPodAutoscalerStatus结构体,新增加了Conditions属性。
Conditions属性是一个HorizontalPodAutoscalerCondition结构体,在这个结构体中包括Type、Status、LastTransitionTime、Reason和Message五个属性,每个属性的含义如下:
• Status属性:表示Type属性是true还是false。取值为true和false,只有当HPA控制器检查的目标指标运行正常的时候才会设置ScalingActive为true。在其他情况下会将ScalingActive设置成false。如果Type是AbleToScale类型,那么取值为true的时候有三种情况,第一种是当HPA控制器可以获取当前目标自动伸缩,第二种是HPA控制器可以扩展或者收缩目标到指定的副本数,第三种是HPA控制器发现已经到了可以启动一次新的自动伸缩时间了,在其他情况下会设置成false。如果Type是ScalingLimited,那么只有当副本数在配置范围内的时候才被设置成false,否则都是true。
• Reason:记录上一次事务产生的原因。
• Type属性:包含三个可选类型,ScalingActive、AbleToScale和ScalingLimited。
• LastTransitionTime:记录上一次事务运行时间。
• Message:记录上一次事务产生的详细信息。
通过kubectl describe hpa命令可以看到HorizontalPodAutoscalerStatus结构体新增的Conditions属性。
$kubectl describe hpa cm-test Name: cm-test Namespace: prom Labels: Annotations: CreationTimestamp: Fri, 16 Jun 2017 18:09:22 +0000 Reference: ReplicationController/cm-test Metrics: ( current / target ) "http_requests" on pods: 66m / 500m Minreplicas: 1 Maxreplicas: 4 ReplicationControllerpods: 1 current / 1 desired Conditions: Type Status Reason Message ---- ------ ------ ------- AbleToScale True ReadyForNewScale the last scale time was sufficientlyold as to warrant a new scale ScalingActive True ValidMetricFound the HPAwas able to successfully calculate a replica count from pods metrichttp_requests ScalingLimited False DesiredWithinRange thedesired replica count is within the acceptible range Events:
2、增加了两个HPA参数(α特性)
在Kubernetes1.7中,对HPA控制器,在原先horizontal-pod-autoscaler-sync-period参数基础上,新增加了horizontal-pod-autoscaler-upscale-delay和horizontal-pod-autoscaler-downscale-delay两个参数,默认值分别是3分钟和5分钟,分别代表自动伸展后的延迟时间和自动收缩后的延迟时间。
HPA控制器通过这两个新增参数来加以辅助控制是否进行自动伸缩,同时也会根据这两个参数来设置HorizontalPodAutoscalerCondition结构体的Conditions属性。