96ec19788d
This PR modifies raw_exec and exec to ensure the cgroup for a task they are driving still exists during a task restart. These drivers have the same bug but with different root cause. For raw_exec, we were removing the cgroup in 2 places - the cpuset manager, and in the unix containment implementation (the thing that uses freezer cgroup to clean house). During a task restart, the containment would remove the cgroup, and when the task runner hooks went to start again would block on waiting for the cgroup to exist, which will never happen, because it gets created by the cpuset manager which only runs as an alloc pre-start hook. The fix here is to simply not delete the cgroup in the containment implementation; killing the PIDs is enough. The removal happens in the cpuset manager later anyway. For exec, it's the same idea, except DestroyTask is called on task failure, which in turn calls into libcontainer, which in turn deletes the cgroup. In this case we do not have control over the deletion of the cgroup, so instead we hack the cgroup back into life after the call to DestroyTask. All of this only applies to cgroups v2. |
||
---|---|---|
.. | ||
cgutil_linux.go | ||
cgutil_linux_test.go | ||
cgutil_noop.go | ||
cpuset_manager.go | ||
cpuset_manager_test.go | ||
cpuset_manager_v1.go | ||
cpuset_manager_v1_test.go | ||
cpuset_manager_v2.go | ||
cpuset_manager_v2_test.go | ||
group_killer.go |