k8s调度器、预选策略、优选函数

节点选择过程

  • 节点预选过程(predicate)
  • 优选过程(priority)
  • 选定节点(select)

调度器

预选策略

  • CheckNodeCondition:检查节点是否正常

  • GeneralPredicates:

    • Hostname:检查pod对象是否定义了pod.spec.host
    • PodFitsHostPorts:检查pod对象的 pod.spec.containers.ports.hostport
    • MatchNodeSelector:检查pod.spec.nodeSelector
    • PodFitsResources:检查pod对资源的需求能否被资源满足
  • (默认不启用)NoDiskConflict:检查pod依赖的存储卷 是否能满足需求

  • PodToleratesNodeTains: 检查污点与容忍。pod.spec.tolerations

  • (默认不启用)PodToleratesNodenoExcuteTains:驱离污点

  • (默认不启用)checkNodeLabelPresence:检查标签的存在性

  • (默认不启用)checkServiceAffinity:将 同一个service 下的pod 尽可能放在一个Node下

  • MaxEBSVolumeCount

  • MaxGCEPDVolumeCount

  • MaxAzureDiskVolumeCount

  • CheckVolumeBinding:

  • NoVolumeZoneConflict:

  • CheckNodeMemoryPressure: 检查内存压力

  • CheckNodePIDPressure:检查进程压力

  • CheckNodeDiskPressure

  • MatchInterPodAffitnity: pod间的亲和性

优选函数

https://github.com/kubernetes/kubernetes/tree/master/pkg/scheduler/algorithm/priorities

  • LeastRequested:按照资源使用量得分
  • BalancedResourceAllocation : CPU和内存资源占用率相近的胜出。平衡资源使用情况
  • NodePreferAvoidPods:根据节点的注解信息 "scheduler.aplpha.kubernetes.io/preferAvoidPods" Node 倾向于不
  • TainToleration:将pod对象的spec.tolerations 与node的Tain进行匹配度检查,匹配的条目越多,得分越低。
  • SelectorSpreading:尽可能的将相同标签选择器的pod 分散在不同的node上。
  • InterPodAffinity:亲和性匹配项
  • nodeAffinity:节点亲和性
  • (默认不启用)MostRequested:服务器空闲度越低,越优先
  • (默认不启用)NodeLabel:根据node标签评分
  • (默认不启用)imageLocality:节点上是否有需求的镜像,根据镜像的体积大小之和计算

根据预选与优选 影响pod 的节点选择,主要可以通过污点、pod亲和性、node亲和性。

高级调度设置机制

  • 节点选择器/节点亲和调度:nodeSelector, nodeName, nodeAffinity

node选择器/node亲和调度

  • nod.spec.nodeName : 根据node 名称选择
  • nod.spec.nodeSelector:根据node 的标签进行选择

强约束,条件不满足则pedding

  • pod.spec.affinity.nodeAffinity

    • preferredDuringSchedulingIgnoredDuringExecution 非强制性 ,多条件权重
    • requiredDuringSchedulingIgnoredDuringExecution 强制性

pod亲和性

  • pod.spec.affinity.podAffinity

    • preferredDuringSchedulingIgnoredDuringExecution 非强制性
    • requiredDuringSchedulingIgnoredDuringExecution 强制性
      • labelSelector
      • namespace
      • topologykey 必须的 affinity、anti-affinity

污点调度 Taints 与 Tolerations

Taints 给予node定义,那些pod可以执行

**pod 使用 Tolerations指定容忍的污点 **

node.spec.taints

FIELDS:
effect <string> -required-
Required. The effect of the taint on pods that do not tolerate the taint.
Valid effects are NoSchedule, PreferNoSchedule and NoExecute. key <string> -required-
Required. The taint key to be applied to a node. timeAdded <string>
TimeAdded represents the time at which the taint was added. It is only
written for NoExecute taints. value <string>
Required. The taint value corresponding to the taint key.

effect: 用于定义排斥的行为:

  • NoSchedule :仅仅影响调度过程,对已经存在的pod不产生影响。
  • PreferNoSchedule:最好不调度,但是可容忍。
  • NoExecute:既影响调度过程,也影响存在的pod对象。驱逐。

管理节点污点

 kubectl taint NODE NAME KEY_1=VAL_1:TAINT_EFFECT_1 ... KEY_N=VAL_N:TAINT_EFFECT_N [options]

pod.spec.tolerations

可以让pod 容忍 node 上的污点。

FIELDS:
effect <string>
Effect indicates the taint effect to match. Empty means match all taint
effects. When specified, allowed values are NoSchedule, PreferNoSchedule
and NoExecute. key <string>
Key is the taint key that the toleration applies to. Empty means match all
taint keys. If the key is empty, operator must be Exists; this combination
means to match all values and all keys. operator <string>
Operator represents a key's relationship to the value. Valid operators are
Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for
value, so that a pod can tolerate all taints of a particular category. tolerationSeconds <integer>
TolerationSeconds represents the period of time the toleration (which must
be of effect NoExecute, otherwise this field is ignored) tolerates the
taint. By default, it is not set, which means tolerate the taint forever
(do not evict). Zero and negative values will be treated as 0 (evict
immediately) by the system. value <string>
Value is the taint value the toleration matches to. If the operator is
Exists, the value should be empty, otherwise just a regular string.

05-k8s调度器、预选策略、优选函数的更多相关文章

  1. k8s调度的预选策略及优选函数

    scheduler调度过程:    Predicate(预选)-->Priority(优选)-->Select(选定)调度方式:    1.节点亲和性调度(NodeAffinity)使用n ...

  2. 7.k8s.调度器scheduler 亲和性、污点

    #k8s. 调度器scheduler 亲和性.污点 默认调度过程:预选 Predicates (过滤节点) --> 优选 Priorities(优先级排序) --> 优先级最高节点 实际使 ...

  3. golang中GPM模型原理与调度器设计策略

    一.GMP模型原理first: 1. 全局队列:存放待运行的G2. P的本地队列:同全局队列类似,存放待运行的G,存储的数量有限:256个,当创建新的G'时,G'优先加入到P的本地队列,如果队列已满, ...

  4. K8S 调度器,预选策略,优选函数

    Kubernetes Scheduler 提供的调度流程分三步: 预选策略(predicate) 遍历nodelist,选择出符合要求的候选节点,Kubernetes内置了多种预选规则供用户选择. 优 ...

  5. k8s调度器、预选策略及调度方式

    一.k8s调度流程 1.(预选)先排除完全不符合pod运行要求的节点2.(优先)根据一系列算法,算出node的得分,最高没有相同的,就直接选择3.上一步有相同的话,就随机选一个 二.调度方式 1.no ...

  6. 图解kubernetes调度器预选设计实现学习

    Scheduler中在进行node选举的时候会首先进行一轮预选流程,即从当前集群中选择一批node节点,本文主要分析k8s在预选流程上一些优秀的筛选设计思想,欢迎大佬们指正 1. 基础设计 1.1 预 ...

  7. k8s调度器kube-scheduler

    kube-scheduler简介 调度是容器编排的重要环节,需要经过严格的监控和控制,现实生产通常对调度有各类限制,譬如某些服务必须在业务独享的机器上运行,或者从灾备的角度考虑尽量把服务调度到不同机器 ...

  8. 泡面不好吃,我用了这篇k8s调度器,征服了他

    1.1 调度器简介 来个小刘一起 装逼吧 ,今天我们来学习 K8的调度器 Scheduler是 Kubernetes的调度器,主要的任务是把定义的 pod分配到集群的节点上,需要考虑以下问题: 公平: ...

  9. k8s调度器介绍(调度框架版本)

    从一个pod的创建开始 由kubectl解析创建pod的yaml,发送创建pod请求到APIServer. APIServer首先做权限认证,然后检查信息并把数据存储到ETCD里,创建deployme ...

  10. golang中goroutine协程调度器设计策略

    goroutine与线程 /* goroutine与线程1. 可增长的栈os线程一般都有固定的栈内存,通常为2MB,一个goroutine的在其声明周期开始时只有很小的栈(2KB),goroutine ...

随机推荐

  1. You can't specify target table 'tbl_students' for update in FROM clause错误

    此问题只出现在mysql中 oracle中无此问题 在同一语句中,当你在select某表的数据后,不能update这个表,如: DELETE FROM tbl_students WHERE id NO ...

  2. F#周报2019年第26期

    新闻 逐渐演化的.NET Core框架 Visual Studio提示与技巧 Windows Termina(预览) Microsoft在GitHub上的工程师从2000名增加至25000名 视频及幻 ...

  3. happy machine learning(First One)

    从前几天起我就开始了愉快的机器学习,这里记录一下学习笔记,我看的是吴恩达老师的视频,这篇博客将会按吴老师的教学目录来集合各优良文章,以及部分的我的个人总结 1.  监督学习与无监督学习 监督:给定一个 ...

  4. 音视频技术“塔尖”之争,网易云信如何C位出道?

    音视频技术“塔尖”之争,网易云信如何C位出道? 社交+美颜.抖音短视频.在线狼人杀.直播竞答.子弹短信……,过往两三年间,互联网新产品和新玩法层出不穷,风口不断切换.这些爆红的网络应用背后,都有一些共 ...

  5. spring 5.x 系列第3篇 —— spring AOP (xml配置方式)

    文章目录 一.说明 1.1 项目结构说明 1.2 依赖说明 二.spring aop 2.1 创建待切入接口及其实现类 2.2 创建自定义切面类 2.3 配置切面 2.4 测试切面 附: 关于切面表达 ...

  6. Kali Linux Web渗透测试手册(第二版) - 1.0 - 渗透测试环境搭建

    一.配置KALI Linux和渗透测试环境 在这一章,我们将覆盖以下内容: 在Windows和Linux上安装VirtualBox 创建一个Kali Linux虚拟机 更新和升级Kali Linux ...

  7. 【设计模式】行为型10中介者模式(Mediator Pattern)

    中介者模式(Mediator Pattern)     这里笔者完全参考了:http://www.runoob.com/design-pattern/mediator-pattern.html,案例精 ...

  8. JVM史上最全实践优化没有之一

    JVM史上最全优化没有之一 1.jvm的运行参数 1.1 三种参数类型 1.1.1 -server与-clinet参数 2.1 -X参数 2.1.1 -Xint.-Xcomp.-Xmixed 3.1 ...

  9. 【Flink】深入理解Flink-On-Yarn模式

    1. 前言 Flink提供了两种在yarn上运行的模式,分别为Session-Cluster和Per-Job-Cluster模式,本文分析两种模式及启动流程. 下图展示了Flink-On-Yarn模式 ...

  10. iOS 唤起APP之Universal Link(通用链接)

    什么是Universal Link(通用链接) Universal Link(通用链接)是Apple在iOS9推出的一种能够方便的通过传统HTTPS链接来启动APP的功能,可以使用相同的网址打开网址和 ...