12

Let's say I have created a cgroup and attach a memory limit of 200MB to the cgroup. I then run a memory-intensive process inside the cgroup, and it uses up its limit of 200MB.

As the process runs, is it possible to lower the memory consumption of the process? So can I set a limit of 100MB while the process is already running and using up 200MB? If so, how quickly does the kernel release 100MB of memory that was being used by the cgroup, and what happens to that memory if the process tries to access it?

2 Answers 2

17

Yes, depending on what you mean by "allocated". You can reduce or increase the amount of physical memory that the process can use.

In-use memory consists of, among other things:

  • Images from disk which are mapped to the process (e.g. shared libraries, executables)
  • Pages from disk which are cached by the IO cache layer
  • Anonymous memory which may or may not be backed by swap.

When reducing the cgroup memory.limit_in_bytes the system will discard pages from disk cache and from disk images (e.g. executables), as these can always be reloaded if needed.

If you have swap enabled, it can also page out anonymous memory.

Create a cgroup for your process and set the limit

# Create a cgroup
mkdir /sys/fs/cgroup/memory/my_cgroup
# Add the process to it
echo $PID > /sys/fs/cgroup/memory/my_cgroup/cgroup.procs

# Set the limit to 40MB
echo $((40 * 1024 * 1024)) > /sys/fs/cgroup/memory/my_cgroup/memory.limit_in_bytes

The system will immediately swap things out until it is under the limit, and it will keep doing this to keep the process under the limit.

If it is not possible for the kernel to put the process or group under the limit initially (because certain memory cannot be swapped e.g. if you don't have any swap, or certain kernel pages which might not be swappable), an error will occur, and the limit will not be changed.

If it is not possible to do this at some point in the future, the OOM killer will kill the process (or one of its subprocesses).

You can use the oom_control key to instead suspend the processes in the group, but then you will have to resolve the issue yourself, either by raising the limit or killing one or more processes.

More information

There is also a memory.soft_limit_in_bytes key. This does not invoke the oom killer, rather it is used when the system is under memory pressure to determine which processes get swapped out first (and possibly at other times).

From within the process or group

Processes can be made aware of memory limits by coding them to query the current usage, and the hard and soft limits. They can then take action to avoid breaching the limits, for example by refraining: from allocating memory, creating child processes or accepting new connection; or by reducing usage by e.g. terminating existing connections.

Processes can subscribe to notifications using the cgroups notification API.

See also

Kernel documentation at:

2
  • What exactly do you mean by "If it is not possible to do this initially"? That sounds like I cannot set a group limit of 10 GB and then start a process with that group, but that's possible with "cgexec -g, isn't it? Can you clarify what you mean by that?
    – Bouncner
    Commented Jul 6, 2021 at 8:39
  • 3
    @Bouncner I mean, if it is not possible for the kernel to reduce the working set of the process below the new hard limit, then the kernel will not set the new hard limit, and the old value will be retained. In this case you can kill the process yourself or pick a higher limit.
    – Ben
    Commented Jul 6, 2021 at 14:50
-1

No, once a running program has successfully allocated memory, you cannot take it away.

Also note that putting a limit on the memory used by the process will cause the kernel to kill the process in the cgroup using the most memory if the limit is exceeded; it won't cause a memory allocation within the program to fail.

2
  • I see. I've noticed though that sometimes it does let me set lower values on the memory as it's running. I guess I'm trying to understand why it sometimes works and sometimes doesn't. Is there any tool which would enable me to control the memory allowed to a process at any time, increasing or decreasing it?
    – user308485
    Commented Dec 2, 2019 at 3:23
  • The behaviour depends on whether you’re setting the limit on memory or memsw. If the former, then a program’s allocated memory can be swapped out in most cases, assuming there’s enough swap space available. Commented Dec 2, 2019 at 8:21

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .