Kubernetes containers Alamy

How to Make the Most of Kubernetes Resource Limits

Follow these best practices to ensure that Kubernetes resource limits help, not hinder, the performance of your Kubernetes-based workloads.

Table of Contents

  1. What Are Kubernetes Resource Limits?
  2. A Note on CPU Resource Limits in Kubernetes
  3. Why Set Limits in Kubernetes?
  4. The Challenges of Kubernetes Resource Limits
  5. Limits vs. Requests
  6. Best Practices for Setting Kubernetes Limits

Kubernetes resource limits are to containerized applications what alcohol is to a party: Used in moderation, resource limits can enhance the overall performance of your applications. But if you take things to the extreme, they'll do more harm than good.

What does it mean to use Kubernetes resource limits in moderation? What's a healthy limit, and what's too low or too high? Keep reading for answers to these questions as we unpack best practices for working with Kubernetes limits.

What Are Kubernetes Resource Limits?

Kubernetes limits are the maximum amount of memory or CPU resources that a container is allowed to consume within a Kubernetes cluster.

For instance, if you want to limit a container to consuming 100 millicores of CPU and 100 megabytes of memory, you can include the following limits definitions for the container when configuring the Pod of which it is a part:

…
limits:
       memory: "100Mi"
       cpu: "100m"
…

This configuration tells Kubernetes never to allow the container to consume more than the resource limits. The container can consume fewer resources than the limits, but it can never exceed the limits.

A Note on CPU Resource Limits in Kubernetes

Memory limits are straightforward because they are measured in megabytes, which represent the same volume of resources on any server.

In contrast, the units used to set CPU usage limits — millicores — are a little complicated. In Kubernetes, 1,000 millicores is equal to the total capacity of 1 CPU core. So, if you set a limit of 100 millicores for a container, you're telling Kubernetes to allow the container to consume only 10% of the total capacity of a CPU core.

That may seem simple. The complication comes when you consider that the computational power of a CPU core will vary depending on the type of processor of which it's a part. Plus, different cores on the same CPU could end up delivering slightly different levels of performance, due to factors such as the positioning of each core. Thus, 1,000 millicores of CPU capacity on one server, or even one particular CPU core, may be different on a different server.

The point here is that a CPU limit that allows the necessary level of performance for a container on one server might need to be changed if the container moves to a different server because the same number of millicores could translate to different levels of performance on different machines.

Why Set Limits in Kubernetes?

Kubernetes doesn't require you to set limits for resources. If you don't, Kubernetes will do its best to give each container the resources it needs, when it needs them.

However, the main reason to configure limits is that they help prevent "noisy neighbor" issues. Those issues occur when one container consumes so many resources that it deprives other containers (its "neighbors") of the resources they need to run properly. You may run into these situations simply because one container ends up experiencing heavy load, or due to bugs that cause excessive CPU or memory usage.

By setting resource limits, you ensure that problematic containers can never suck up so many resources that they disrupt the performance of other containers.

In addition, resource limits are beneficial because they are a way to prioritize certain containers over others when it comes to resource allocation. You might have some workloads that are more important to you than others; for instance, some apps you are running might be for testing purposes while others are production applications. By limiting non-critical workloads to lower levels of resource consumption, you help ensure that your most important workloads always have the resources they need.

The Challenges of Kubernetes Resource Limits

While resource limits can help prevent over-consumption of resources, they do have a potential downside, too. If you set limits that are too low, you may deprive workloads of the resources they need to run optimally. Even if spare resources are available, Kubernetes won't allow containers to use them if the containers have already reached the consumption limits you set.

This means that setting overly restrictive limits could undercut Kubernetes' performance.

Limits vs. Requests

In addition to being able to set resource limits for containers, you can also (optionally) configure requests. Requests are the minimal resources that Kubernetes should make available to a given container. The container is allowed to consume more resources than those specified via a request (provided its consumption doesn't exceed any limits you've set), but setting requests helps ensure that a container has the minimum resources necessary to function properly.

You don't need to use requests if you use limits, or vice versa. But specifying both configuration variables in conjunction is a good way to establish a range of healthy resource consumption for each container. For example, if you set a request of 256 megabytes of memory and a limit of 512 megabytes, you ensure that your container will always have an amount of memory available to it that falls within the range between those two numbers.

Best Practices for Setting Kubernetes Limits

How can you know what a healthy resource limit is for each container? The following tips can help:

  • Know the overall capacity of your cluster: You can't set realistic limits if you don't know how much CPU and memory are available in total across your cluster. Don't guess about these numbers; examine your nodes to figure out how much you have.
  • Avoid arbitrary limits: Don't set arbitrary limits just to say you've set limits. In other words, don't decide that you're going to limit each container to, say, 200 millicores of CPU by default. Instead, set limits on a case-by-case basis that reflects the unique requirements of each container.
  • Study consumption metrics: To identify what the requirements of each container are, look at the actual resource consumption metrics of that container. You can get this data from most APM tools.
  • Understand the nuances of CPU limits: As mentioned above, the meaning of a millicore can vary from one server to another. You should take this variable into account when setting CPU limits.

These practices help ensure that Kubernetes resource limits advance, rather than undercut, the performance of your Kubernetes-based workloads.

About the author

Christopher Tozzi headshotChristopher Tozzi is a technology analyst with subject matter expertise in cloud computing, application development, open source software, virtualization, containers and more. He also lectures at a major university in the Albany, New York, area. His book, “For Fun and Profit: A History of the Free and Open Source Software Revolution,” was published by MIT Press.
TAGS: Containers
Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish