首页 > 其他 > 详细

CRIU migration: where are cgroup and lxc ?

时间:2015-02-25 23:43:31      阅读:529      评论:0      收藏:0      [点我收藏+]

Purpose:

If we get rid of cgroup and lxc when we do dump through criu, it is good for us to make migration successfully


LXC:

CRIU itself doesn’t dump lxc(container) unless using lxc-checkpoint tool. So by default, lxc is not considered by CRIU.

Cgroups:

If we unload or don’t use cgroup functionality, a process won’t have information about cgroup. So when we do checkpoint in bash environment, the checkpoint image file cgroup.img should be empty. It is true, in fact.
But when we do dump in ssh environment, and the checkpointed process is running in bash, cgroup.img is not empty, it has the information about bash in which the checkpointed process is running.
技术分享

And here is the information about the bash:

2:name=systemd:/user/1000.user/c2.session

while cat /proc/self/cgroup in the ssh in which criu is running

2:name=systemd:/user/1000.user/22.session

So it is strange, we don’t enable cgroup functionality, why the cgroup.img is not empty? Just because we use ciru in ssh environment?

Yes.
First, let’s think so. If we run criu and the checkpointed process both in bash, we should use –shell-job to ignore the “leaked” session leader which is bash. So we can do checkpoint/restore successfully.
But now criu is in ssh, while the checkpointed process is in bash. Just like:
If they are both in bash, we can think that they belongs to one common user, so criu can ignore the information about the user, such as session id. But now one is in bash, while the other is in ssh, just equivalent to two different users. So criu which is in ssh shouldn’t ignore where the checkpointed process comes from. So criu will write down the bash information in cgroup.img.
( 译文:如果都在bash中,可以理解为从属于同一个用户,所以可以忽略这个用户的标识信息。但现在一个在bash,而另一个在ssh,相当于两个不同用户,位于ssh的criu在checkpoint时就要点出被checkpoint的process来自何方,这也就是cgroup.img出现bash信息的原因。)


Conclusion:

On one server (called bug03), we run criu and the checkpointed process both in bash environment. And then lxc and crgoup won’t be considered. And the cgroup.img is empty, which means that criu ignores the information about bash session. In one word, the checkpoint is pure.
In such theory, the miration from bug03 to bug02(the destination node) will succeed, even though the bash session information between bug02 and bug03 is different.

CRIU migration: where are cgroup and lxc ?

原文:http://blog.csdn.net/bluecloudmatrix/article/details/43941149

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!