管理节点资源

有关使用 Redis Enterprise for Kubernetes 管理节点资源和设置驱逐阈值的建议。

适用于 Kubernetes 的 Redis Enterprise

节点驱逐阈值

Kubernetes 使用节点压力驱逐来终止 Pod 并释放节点资源。当您使用以下建议时,Redis Enterprise for Kubernetes 效果最佳。

驱逐阈值由 kubelet 参数管理。

Redis 建议设置较高的软驱逐阈值。这会尽早更改节点条件,以提醒管理员。

我们还建议将eviction-soft-grace-period足够高,以便管理员扩展集群。

有关在特定平台上配置驱逐阈值的更多信息,请参阅释放 OpenShift 的节点资源或 GKE 的集群架构

监控节点条件

Redis 建议监控节点状况。如果两者都MemoryPressureDiskPressure为 true,则表示已达到驱逐阈值。

> kubectl get nodes -o jsonpath='{range .items[*]}name:{.metadata.name}{"\t"}MemoryPressure:{.status.conditions[?(@.type == "MemoryPressure")].status}{"\t"}DiskPressure:{.status.conditions[?(@.type == "DiskPressure")].status}{"\n"}{end}'
name:gke-55d1ac88-213c	MemoryPressure:False	DiskPressure:False
name:gke-55d1ac88-vrpp	MemoryPressure:False	DiskPressure:False
name:gke-7253cc19-42g0	MemoryPressure:False	DiskPressure:False

For more information about monitoring node conditions, see Node conditions on kubernetes.io.

Resource quotas

Kubernetes uses the ResourceQuota object to limit resource consumption per namespace. This lets you limit the number of objects created by a namespace or the amount of compute resources consumed by a namespace.

The resource settings for Redis Enterprise for Kubernetes are defined in the operator.yaml and the RedisEnterpriseCluster custom resource.

The following settings are the minimum workloads for the operator to function.

  resources:
    limits:
      cpu: 0.5
      memory: 256Mi
    requests:
      cpu: 0.5
      memory: 256Mi

For more details on using resource quotas, see the Kubernetes documentation.

RATE THIS PAGE
Back to top ↑