kubernetes-guide/content/troubleshooting/cases/cluster/scheduler-snapshot-missing-...

7.7 KiB
Raw Blame History

调度器 cache 快照遗漏部分信息导致 pod pending

问题背景

新建一个如下的 k8s 集群有3个master node和1个worker nodeworker 和 master在不同的可用区node信息如下

node label信息
master-01 failure-domain.beta.kubernetes.io/region=sh,failure-domain.beta.kubernetes.io/zone=200002
master-02 failure-domain.beta.kubernetes.io/region=sh,failure-domain.beta.kubernetes.io/zone=200002
master-03 failure-domain.beta.kubernetes.io/region=sh,failure-domain.beta.kubernetes.io/zone=200002
worker-node-01 failure-domain.beta.kubernetes.io/region=sh,failure-domain.beta.kubernetes.io/zone=200004

待集群创建好之后然后创建了一个daemonset对象就出现了daemonset的某个pod一直卡主pending状态的现象。

现象如下:

$ kubectl  get  pod  -o  wide
NAME        READY STATUS  RESTARTS AGE NODE 
debug-4m8lc 1/1   Running 1        89m  master-01
debug-dn47c 0/1   Pending 0        89m  <none>
debug-lkmfs 1/1   Running 1        89m   master-02
debug-qwdbc 1/1   Running 1        89m  worker-node-01

结论先行

k8s的调度器在调度某个pod时会从调度器的内部cache中同步一份快照snapshot其中保存了pod可以调度的node信息。

上面问题daemonset的某个pod实例卡在pending状态发生的原因就是同步的过程发生了部分node信息丢失导致了daemonset的部分pod实例无法调度到指定的节点上出现了pending状态。

接下来是详细的排查过程。

日志排查

截图中出现的节点信息(来自用户线上集群):

  • k8s master节点ss-stg-ma-01、ss-stg-ma-02、ss-stg-ma-03
  • k8s worker节点ss-stg-test-01
  1. 获取调度器的日志

这里首先是通过动态调大调度器的日志级别,比如,直接调大到V(10),尝试获取一些相关日志。

当日志级别调大之后,有抓取到一些关键信息,信息如下:

  • 解释一下当调度某个pod时有可能会进入到调度器的抢占preempt环节,而上面的日志就是出自于抢占环节。 集群中有4个节点3个master node和1个worker node但是日志中只显示了3个节点缺少了一个master节点。所以这里暂时怀疑下是调度器内部缓存cache中少了node info
  1. 获取调度器内部cache信息

k8s v1.18已经支持打印调度器内部的缓存cache信息。打印出来的调度器内部缓存cache信息如下

可以看出调度器的内部缓存cache中的node info是完整的3个master node和1个worker node

通过分析日志可以得到一个初步结论调度器内部缓存cache中的node info是完整的但是当调度pod时缓存cache中又会缺少部分node信息。

问题根因

在进一步分析之前我们先一起再熟悉下调度器调度pod的流程部分展示和nodeTree数据结构。

pod调度流程部分展示

结合上图一次pod的调度过程就是一次Scheduler Cycle。在这个Cycle开始时,第一步就是update snapshot。snapshot我们可以理解为cycle内的cache其中保存了pod调度时所需的node info,而update snapshot就是一次nodeTree调度器内部cache中保存的node信息snapshot的同步过程。

而同步过程主要是通过nodeTree.next()函数来实现,函数逻辑如下:

// next returns the name of the next node. NodeTree iterates over zones and in each zone iterates
// over nodes in a round robin fashion.
func (nt *nodeTree) next() string {
	if len(nt.zones) == 0 {
		return ""
	}
	numExhaustedZones := 0
	for {
		if nt.zoneIndex >= len(nt.zones) {
			nt.zoneIndex = 0
		}
		zone := nt.zones[nt.zoneIndex]
		nt.zoneIndex++
		// We do not check the exhausted zones before calling next() on the zone. This ensures
		// that if more nodes are added to a zone after it is exhausted, we iterate over the new nodes.
		nodeName, exhausted := nt.tree[zone].next()
		if exhausted {
			numExhaustedZones++
			if numExhaustedZones >= len(nt.zones) { // all zones are exhausted. we should reset.
				nt.resetExhausted()
			}
		} else {
			return nodeName
		}
	}
}

再结合上面排查过程得出的结论我们可以再进一步缩小问题范围nodeTree调度器内部cachesnapshot.nodeInfoList的同步过程丢失了某个节点信息。

nodeTree数据结构

(方便理解,本文使用了链表来展示)

重现问题,定位根因

创建k8s集群时会先加入master node然后再加入worker node意思是worker node时间上会晚于master node加入集群的时间

第一轮同步3台master node创建好然后发生pod调度比如cni 插件以daemonset的方式部署在集群中会触发一次nodeTree调度器内部cachesnapshot.nodeInfoList的同步。同步之后nodeTree的两个游标就变成了如下结果

nodeTree.zoneIndex = 1, nodeTree.nodeArray[sh:200002].lastIndex = 3,

第二轮同步当worker node加入集群中后然后新建一个daemonset就会触发第二轮的同步nodeTree调度器内部cachesnapshot.nodeInfoList的同步)。

同步过程如下:

  1. zoneIndex=1, nodeArray[sh:200004].lastIndex=0, we get worker-node-01.

  1. zoneIndex=2 >= len(zones); zoneIndex=0, nodeArray[sh:200002].lastIndex=3, return.

  1. zoneIndex=1, nodeArray[sh:200004].lastIndex=1, return.

  1. zoneIndex=0, nodeArray[sh:200002].lastIndex=0, we get master-01.

  1. zoneIndex=1, nodeArray[sh:200004].lastIndex=0, we get worker-node-01.

  1. zoneIndex=2 >= len(zones); zoneIndex=0, nodeArray[sh:200002].lastIndex=1, we get master-02.

同步完成之后,调度器的snapshot.nodeInfoList得到如下的结果:

[
    worker-node-01,
    master-01,
    worker-node-01,
    master-02,
]

master-03去哪了在第二轮同步的过程中丢了。

解决方案

问题根因的分析中可以看出导致问题发生的原因在于nodeTree数据结构中的游标zoneIndex 和 lastIndexzone级别值被保留了所以解决的方案就是在每次同步SYNC时强制重置游标归0

参考资料