【发布时间】:2021-01-29 01:04:27
【问题描述】:
我已经使用 helm stable/airflow 部署了气流:https://github.com/helm/charts/tree/master/stable/airflow
我已经用 celery executor 部署了它,并且我运行了一个需要读取大表的任务。我在运行此任务的 Pod 中收到此错误:
The node was low on resource: memory. Container base was using 3642536Ki, which exceeds its request of 0.
I understand that I have exceed the memory of the node is running this pod.
我想修改气流中每个 pod 使用的内存和 cpu 限制。我可以看到我可以限制工人的资源。
我的问题是:
如何指定内存请求,以及将从工作人员创建的 pod 的限制?因为我只能看到如何从工作人员那里设置资源,而不能看到工作人员创建的 Pot。
【问题讨论】:
标签: kubernetes airflow kubernetes-helm