StopTask: Allow graceful termination.

This commit is contained in:
Shishir Mahajan 2020-05-13 15:37:20 -07:00
parent a633f332b2
commit e3b0cfda1f
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 25 additions and 6 deletions

View File

@ -417,10 +417,7 @@ func (d *Driver) StopTask(taskID string, timeout time.Duration, signal string) e
return drivers.ErrTaskNotFound
}
d.logger.Info("StopTask signal: %s", signal)
d.logger.Info("StopTask timeout: %v", timeout)
if err := handle.shutdown(d.ctxContainerd, syscall.SIGTERM); err != nil {
if err := handle.shutdown(d.ctxContainerd, timeout, syscall.SIGTERM); err != nil {
return fmt.Errorf("Shutdown failed: %v", err)
}

View File

@ -2,6 +2,7 @@ package containerd
import (
"context"
"fmt"
"os"
"sync"
"syscall"
@ -63,8 +64,29 @@ func (h *taskHandle) run(ctxContainerd context.Context) {
h.task.Start(ctxContainerd)
}
func (h *taskHandle) shutdown(ctxContainerd context.Context, signal syscall.Signal) error {
return h.task.Kill(ctxContainerd, signal)
func (h *taskHandle) shutdown(ctxContainerd context.Context, timeout time.Duration, signal syscall.Signal) error {
if err := h.task.Kill(ctxContainerd, signal); err != nil {
return err
}
// timeout = 5 seconds, passed by nomad client
// TODO: Make timeout configurable in task_config. This will allow users to set a higher timeout
// if they need more time for their container to shutdown gracefully.
time.Sleep(timeout)
status, err := h.task.Status(ctxContainerd)
if err != nil {
return err
}
h.logger.Info(fmt.Sprintf("Status is: %v\n", status.Status))
if status.Status != containerd.Running {
h.logger.Info("Task is not running anymore, no need to SIGKILL")
return nil
}
return h.task.Kill(ctxContainerd, syscall.SIGKILL)
}
func (h *taskHandle) cleanup(ctxContainerd context.Context) error {