mirror of
https://github.com/containers/podman.git
synced 2025-07-15 03:02:52 +08:00
EXPERIMENTAL: Do not call out to runc for sync
When syncing container state, we normally call out to runc to see the container's status. This does have significant performance implications, though, and we've seen issues with large amounts of runc processes being spawned. This patch attempts to use stat calls on the container exit file created by Conmon instead to sync state. This massively decreases the cost of calling updateContainer (it has gone from an almost-unconditional fork/exec of runc to a single stat call that can be avoided in most states). Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
This commit is contained in:
@ -685,7 +685,7 @@ func (c *Container) Sync() error {
|
||||
(c.state.State != ContainerStateConfigured) {
|
||||
oldState := c.state.State
|
||||
// TODO: optionally replace this with a stat for the exit file
|
||||
if err := c.runtime.ociRuntime.updateContainerStatus(c); err != nil {
|
||||
if err := c.runtime.ociRuntime.updateContainerStatus(c, true); err != nil {
|
||||
return err
|
||||
}
|
||||
// Only save back to DB if state changed
|
||||
|
Reference in New Issue
Block a user