Help Center> Cloud Container Engine> FAQs> Workload> Scheduling Policies> How Do I Prevent a Container on a Node from Being Evicted?
Updated on 2024-03-04 GMT+08:00

How Do I Prevent a Container on a Node from Being Evicted?

Context

During workload scheduling, two containers on a node may compete for resources. As a result, kubelet evicts both containers. This section describes how to set a policy to retain one of the containers.

Solution

kubelet uses the following criteria to evict a pod:

Pods of different QoS classes are evicted in the following sequence:

BestEffort -> Burstable -> Guaranteed

  • BestEffort pods: These pods have the lowest priority. They will be the first to be killed if the system runs out of memory.
  • Burstable pods: These pods will be killed if the system runs out of memory and no BestEffort pods exist.
  • Guaranteed pods: These pods will be killed if the system runs out of memory and no Burstable or BestEffort pods exist.
  • If processes in a pod are killed because of excessive resource usage (while the node resources are still sufficient), the system tends to restart the container or create a pod.
  • If resources are sufficient, you can assign the QoS class of Guaranteed to all pods. In this way, more compute resources are used to improve service performance and stability, reducing troubleshooting time and costs.
  • To improve resource utilization, assign the QoS class of Guaranteed to service pods and Burstable or BestEffort to other pods (for example, filebeat).

Scheduling Policies FAQs

more