-
What would you like to be added?I am deploy etcd by k8s pod, but i have an oom probelm when i set memory limit 12Gi: apiVersion: v1
kind: Pod
resources:
limits:
cpu: "4"
memory: 12Gi etcd command is:
my question is what is the proberly memory limit for the above command? Is or Is Why is this needed?What memory limit should i set for etcd? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
etcd memory usage depends mostly on how the API is used and cannot be guessed. For example you can make concurrent list requests for all keys, requiring etcd to allocate Gigabytes of memory per request (also applies to K8s :)). |
Beta Was this translation helpful? Give feedback.
etcd memory usage depends mostly on how the API is used and cannot be guessed. For example you can make concurrent list requests for all keys, requiring etcd to allocate Gigabytes of memory per request (also applies to K8s :)).