I am a bit confused about if I should use:
limits.cpu 1
limits.cpu.allowance 25%
to limit the container to a quarter of one cpu or:
limits.cpu.allowance 25ms/100ms
Here is says:
Just give me X CPUs
In this mode, you let LXD pick a bunch of cores for you and then load-balance things as more containers and CPUs go online/offline.
The container only sees that number of CPU.
Give me a specific set of CPUs (say, core 1, 3 and 5)
Similar to the first mode except that no load-balancing is happening, youâre stuck with those cores no matter how busy they may be.
Give me 20% of whatever you have
In this mode, you get to see all the CPUs but the scheduler will restrict you to 20% of the CPU time but only when under load! So if the system isnât busy, your container can have as much fun as it wants. When containers next to it start using the CPU, then it gets capped.
Out of every measured 200ms, give me 50ms (and no more than that)
This mode is similar to the previous one in that you get to see all the CPUs but this time, you can only use as much CPU time as you set in the limit, no matter how idle the system may be. On a system without over-commit this lets you slice your CPU very neatly and guarantees constant performance to those containers.Itâs also possible to combine one of the first two with one of the last two, that is, request a set of CPUs and then further restrict how much CPU time you get on those.
http://lxd.readthedocs.io/en/stable-3.0/containers/#cpu-limits
But there it says:
limits.cpu.allowance
drives either the CFS scheduler quotas when passed a time constraint, or the generic CPU shares mechanism when passed a percentage value.The time constraint (e.g. 20ms/50ms) is relative to one CPU worth of time, so to restrict to two CPUs worth of time, something like 100ms/50ms should be used.
So which is true?
The time measurement applies to the whole cpu time available or only to one?