mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
libcontainerd: wait for restart after state change
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
parent
6ebf816f80
commit
495448b290
2 changed files with 38 additions and 29 deletions
|
@ -144,6 +144,7 @@ func (ctr *container) handleEvent(e *containerd.Event) error {
|
||||||
defer ctr.client.unlock(ctr.containerID)
|
defer ctr.client.unlock(ctr.containerID)
|
||||||
switch e.Type {
|
switch e.Type {
|
||||||
case StateExit, StatePause, StateResume, StateOOM:
|
case StateExit, StatePause, StateResume, StateOOM:
|
||||||
|
var waitRestart chan error
|
||||||
st := StateInfo{
|
st := StateInfo{
|
||||||
CommonStateInfo: CommonStateInfo{
|
CommonStateInfo: CommonStateInfo{
|
||||||
State: e.Type,
|
State: e.Type,
|
||||||
|
@ -166,8 +167,26 @@ func (ctr *container) handleEvent(e *containerd.Event) error {
|
||||||
st.State = StateRestart
|
st.State = StateRestart
|
||||||
ctr.restarting = true
|
ctr.restarting = true
|
||||||
ctr.client.deleteContainer(e.Id)
|
ctr.client.deleteContainer(e.Id)
|
||||||
|
waitRestart = wait
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove process from list if we have exited
|
||||||
|
// We need to do so here in case the Message Handler decides to restart it.
|
||||||
|
switch st.State {
|
||||||
|
case StateExit:
|
||||||
|
ctr.clean()
|
||||||
|
ctr.client.deleteContainer(e.Id)
|
||||||
|
case StateExitProcess:
|
||||||
|
ctr.cleanProcess(st.ProcessID)
|
||||||
|
}
|
||||||
|
ctr.client.q.append(e.Id, func() {
|
||||||
|
if err := ctr.client.backend.StateChanged(e.Id, st); err != nil {
|
||||||
|
logrus.Errorf("libcontainerd: backend.StateChanged(): %v", err)
|
||||||
|
}
|
||||||
|
if st.State == StateRestart {
|
||||||
go func() {
|
go func() {
|
||||||
err := <-wait
|
err := <-waitRestart
|
||||||
ctr.client.lock(ctr.containerID)
|
ctr.client.lock(ctr.containerID)
|
||||||
defer ctr.client.unlock(ctr.containerID)
|
defer ctr.client.unlock(ctr.containerID)
|
||||||
ctr.restarting = false
|
ctr.restarting = false
|
||||||
|
@ -187,21 +206,7 @@ func (ctr *container) handleEvent(e *containerd.Event) error {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Remove process from list if we have exited
|
|
||||||
// We need to do so here in case the Message Handler decides to restart it.
|
|
||||||
switch st.State {
|
|
||||||
case StateExit:
|
|
||||||
ctr.clean()
|
|
||||||
ctr.client.deleteContainer(e.Id)
|
|
||||||
case StateExitProcess:
|
|
||||||
ctr.cleanProcess(st.ProcessID)
|
|
||||||
}
|
|
||||||
ctr.client.q.append(e.Id, func() {
|
|
||||||
if err := ctr.client.backend.StateChanged(e.Id, st); err != nil {
|
|
||||||
logrus.Errorf("libcontainerd: backend.StateChanged(): %v", err)
|
|
||||||
}
|
|
||||||
if e.Type == StatePause || e.Type == StateResume {
|
if e.Type == StatePause || e.Type == StateResume {
|
||||||
ctr.pauseMonitor.handle(e.Type)
|
ctr.pauseMonitor.handle(e.Type)
|
||||||
}
|
}
|
||||||
|
|
|
@ -195,6 +195,7 @@ func (ctr *container) waitProcessExitCode(process *process) int {
|
||||||
// equivalent to (in the linux containerd world) where events come in for
|
// equivalent to (in the linux containerd world) where events come in for
|
||||||
// state change notifications from containerd.
|
// state change notifications from containerd.
|
||||||
func (ctr *container) waitExit(process *process, isFirstProcessToStart bool) error {
|
func (ctr *container) waitExit(process *process, isFirstProcessToStart bool) error {
|
||||||
|
var waitRestart chan error
|
||||||
logrus.Debugln("libcontainerd: waitExit() on pid", process.systemPid)
|
logrus.Debugln("libcontainerd: waitExit() on pid", process.systemPid)
|
||||||
|
|
||||||
exitCode := ctr.waitProcessExitCode(process)
|
exitCode := ctr.waitProcessExitCode(process)
|
||||||
|
@ -238,20 +239,7 @@ func (ctr *container) waitExit(process *process, isFirstProcessToStart bool) err
|
||||||
} else if restart {
|
} else if restart {
|
||||||
si.State = StateRestart
|
si.State = StateRestart
|
||||||
ctr.restarting = true
|
ctr.restarting = true
|
||||||
go func() {
|
waitRestart = wait
|
||||||
err := <-wait
|
|
||||||
ctr.restarting = false
|
|
||||||
ctr.client.deleteContainer(ctr.friendlyName)
|
|
||||||
if err != nil {
|
|
||||||
si.State = StateExit
|
|
||||||
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
|
||||||
logrus.Error(err)
|
|
||||||
}
|
|
||||||
logrus.Error(err)
|
|
||||||
} else {
|
|
||||||
ctr.client.Create(ctr.containerID, ctr.ociSpec, ctr.options...)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -267,6 +255,22 @@ func (ctr *container) waitExit(process *process, isFirstProcessToStart bool) err
|
||||||
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
||||||
logrus.Error(err)
|
logrus.Error(err)
|
||||||
}
|
}
|
||||||
|
if si.State == StateRestart {
|
||||||
|
go func() {
|
||||||
|
err := <-waitRestart
|
||||||
|
ctr.restarting = false
|
||||||
|
ctr.client.deleteContainer(ctr.friendlyName)
|
||||||
|
if err != nil {
|
||||||
|
si.State = StateExit
|
||||||
|
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
||||||
|
logrus.Error(err)
|
||||||
|
}
|
||||||
|
logrus.Error(err)
|
||||||
|
} else {
|
||||||
|
ctr.client.Create(ctr.containerID, ctr.ociSpec, ctr.options...)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
logrus.Debugf("libcontainerd: waitExit() completed OK, %+v", si)
|
logrus.Debugf("libcontainerd: waitExit() completed OK, %+v", si)
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in a new issue