open-nomad/drivers/exec/driver_pre09.go

47 lines
1.3 KiB
Go
Raw Normal View History

2019-01-14 17:25:59 +00:00
package exec
import (
"fmt"
"time"
"github.com/hashicorp/nomad/client/state"
2019-01-14 17:25:59 +00:00
"github.com/hashicorp/nomad/drivers/shared/executor"
"github.com/hashicorp/nomad/plugins/drivers"
pstructs "github.com/hashicorp/nomad/plugins/shared/structs"
2019-01-14 17:25:59 +00:00
)
func (d *Driver) recoverPre09Task(h *drivers.TaskHandle) error {
handle, err := state.UnmarshalPre09HandleID(h.DriverState)
if err != nil {
return fmt.Errorf("failed to decode pre09 driver handle: %v", err)
}
reattach, err := pstructs.ReattachConfigToGoPlugin(handle.ReattachConfig())
if err != nil {
return fmt.Errorf("failed to decode reattach config from pre09 handle: %v", err)
}
2019-01-14 17:25:59 +00:00
exec, pluginClient, err := executor.ReattachToPre09Executor(reattach,
d.logger.With("task_name", h.Config.Name, "alloc_id", h.Config.AllocID))
2019-01-14 17:25:59 +00:00
if err != nil {
d.logger.Error("failed to reattach to executor", "error", err, "task_name", h.Config.Name)
2019-01-14 17:25:59 +00:00
return fmt.Errorf("failed to reattach to executor: %v", err)
}
th := &taskHandle{
2019-01-14 17:25:59 +00:00
exec: exec,
pid: reattach.Pid,
pluginClient: pluginClient,
taskConfig: h.Config,
2019-01-14 17:25:59 +00:00
procState: drivers.TaskStateRunning,
startedAt: time.Now(),
exitResult: &drivers.ExitResult{},
logger: d.logger,
2019-01-14 17:25:59 +00:00
}
d.tasks.Set(h.Config.ID, th)
2019-01-14 17:25:59 +00:00
go th.run()
2019-01-14 17:25:59 +00:00
return nil
}