-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CVE-2019-5736]: Server uses more memory if start many runc process at one time #1993
Comments
It's because you're just doing Once a container is started there is no memory overhead from the copying because the |
Because |
Yeah, I just looked and containerd uses separate EDIT: Sorry, there is another solution which is to create a temporary overlayfs mount. I might actually just implement this because it will solve other problems too (and we can use |
#1984 also fixed this. |
Different from #1980 , If we start 100 runc processes at one time, the server will use about more 900M memory than before, it may cause failure. I don't know whether this is a problem or not?
Before fix:
After fix:
The text was updated successfully, but these errors were encountered: