|
|
|
|
|
by pickledish
573 days ago
|
|
Another potential avenue for problems like this, which I'm a fan of, is taking advantage of k8s's static CPU policy: https://kubernetes.io/docs/tasks/administer-cluster/cpu-mana... Using this (plus guaranteed QoS), you end up with containers which can only even "see" a subset of cores of the whole node (and they get those cores all to themselves), which is great for reducing noisy neighbors when big machines are running many different services. |
|
Interesting link nonetheless, thanks!