mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
The `DisableLogCollection` capability was introduced as an experimental interface for the Docker driver in 0.10.4. The interface has been stable and allowing third-party task drivers the same capability would be useful for those drivers that don't need the additional overhead of logmon. This PR only makes the capability public. It doesn't yet add it to the configuration options for the other internal drivers. Fixes: #14636 #15686
249 lines
6.5 KiB
Go
249 lines
6.5 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package taskrunner
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"time"
|
|
|
|
hclog "github.com/hashicorp/go-hclog"
|
|
plugin "github.com/hashicorp/go-plugin"
|
|
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
|
|
"github.com/hashicorp/nomad/client/logmon"
|
|
"github.com/hashicorp/nomad/helper/uuid"
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
bstructs "github.com/hashicorp/nomad/plugins/base/structs"
|
|
pstructs "github.com/hashicorp/nomad/plugins/shared/structs"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
const (
|
|
// logmonReattachKey is the HookData key where logmon's reattach config
|
|
// is stored.
|
|
logmonReattachKey = "reattach_config"
|
|
)
|
|
|
|
// logmonHook launches logmon and manages task logging
|
|
type logmonHook struct {
|
|
runner *TaskRunner
|
|
|
|
// logmon is the handle to the log monitor process for the task.
|
|
logmon logmon.LogMon
|
|
logmonPluginClient *plugin.Client
|
|
|
|
config *logmonHookConfig
|
|
|
|
logger hclog.Logger
|
|
}
|
|
|
|
type logmonHookConfig struct {
|
|
logDir string
|
|
disabled bool
|
|
stdoutFifo string
|
|
stderrFifo string
|
|
}
|
|
|
|
func newLogMonHook(tr *TaskRunner, logger hclog.Logger) *logmonHook {
|
|
hook := &logmonHook{
|
|
runner: tr,
|
|
config: tr.logmonHookConfig,
|
|
logger: logger,
|
|
}
|
|
|
|
return hook
|
|
}
|
|
|
|
func newLogMonHookConfig(taskName string, logCfg *structs.LogConfig, logDir string) *logmonHookConfig {
|
|
cfg := &logmonHookConfig{
|
|
logDir: logDir,
|
|
disabled: logCfg.Disabled,
|
|
}
|
|
|
|
// If logging is disabled configure task's stdout/err to point to devnull
|
|
if logCfg.Disabled {
|
|
cfg.stdoutFifo = os.DevNull
|
|
cfg.stderrFifo = os.DevNull
|
|
return cfg
|
|
}
|
|
|
|
if runtime.GOOS == "windows" {
|
|
id := uuid.Generate()[:8]
|
|
cfg.stdoutFifo = fmt.Sprintf("//./pipe/%s-%s.stdout", taskName, id)
|
|
cfg.stderrFifo = fmt.Sprintf("//./pipe/%s-%s.stderr", taskName, id)
|
|
} else {
|
|
cfg.stdoutFifo = filepath.Join(logDir, fmt.Sprintf(".%s.stdout.fifo", taskName))
|
|
cfg.stderrFifo = filepath.Join(logDir, fmt.Sprintf(".%s.stderr.fifo", taskName))
|
|
}
|
|
return cfg
|
|
}
|
|
|
|
func (*logmonHook) Name() string {
|
|
return "logmon"
|
|
}
|
|
|
|
func (h *logmonHook) launchLogMon(reattachConfig *plugin.ReattachConfig) error {
|
|
l, c, err := logmon.LaunchLogMon(h.logger, reattachConfig)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
h.logmon = l
|
|
h.logmonPluginClient = c
|
|
return nil
|
|
}
|
|
|
|
func reattachConfigFromHookData(data map[string]string) (*plugin.ReattachConfig, error) {
|
|
if data == nil || data[logmonReattachKey] == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
var cfg pstructs.ReattachConfig
|
|
err := json.Unmarshal([]byte(data[logmonReattachKey]), &cfg)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return pstructs.ReattachConfigToGoPlugin(&cfg)
|
|
}
|
|
|
|
func (h *logmonHook) Prestart(ctx context.Context,
|
|
req *interfaces.TaskPrestartRequest, resp *interfaces.TaskPrestartResponse) error {
|
|
if h.isLoggingDisabled() {
|
|
return nil
|
|
}
|
|
|
|
attempts := 0
|
|
for {
|
|
err := h.prestartOneLoop(ctx, req)
|
|
if err == bstructs.ErrPluginShutdown || grpc.Code(err) == codes.Unavailable {
|
|
h.logger.Warn("logmon shutdown while making request", "error", err)
|
|
|
|
if attempts > 3 {
|
|
h.logger.Warn("logmon shutdown while making request; giving up", "attempts", attempts, "error", err)
|
|
return err
|
|
}
|
|
|
|
// retry after killing process and ensure we start a new logmon process
|
|
attempts++
|
|
h.logger.Warn("logmon shutdown while making request; retrying", "attempts", attempts, "error", err)
|
|
h.logmonPluginClient.Kill()
|
|
time.Sleep(1 * time.Second)
|
|
continue
|
|
} else if err != nil {
|
|
return err
|
|
}
|
|
|
|
rCfg := pstructs.ReattachConfigFromGoPlugin(h.logmonPluginClient.ReattachConfig())
|
|
jsonCfg, err := json.Marshal(rCfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
resp.State = map[string]string{logmonReattachKey: string(jsonCfg)}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (h *logmonHook) isLoggingDisabled() bool {
|
|
if h.config.disabled {
|
|
h.logger.Debug("log collection is disabled by task")
|
|
return true
|
|
}
|
|
|
|
caps := h.runner.driverCapabilities
|
|
if caps != nil && caps.DisableLogCollection {
|
|
h.logger.Debug("log collection is disabled by driver")
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (h *logmonHook) prestartOneLoop(ctx context.Context, req *interfaces.TaskPrestartRequest) error {
|
|
// attach to a running logmon if state indicates one
|
|
if h.logmonPluginClient == nil {
|
|
reattachConfig, err := reattachConfigFromHookData(req.PreviousState)
|
|
if err != nil {
|
|
h.logger.Error("failed to load reattach config", "error", err)
|
|
return err
|
|
}
|
|
if reattachConfig != nil {
|
|
if err := h.launchLogMon(reattachConfig); err != nil {
|
|
h.logger.Warn("failed to reattach to logmon process", "error", err)
|
|
// if we failed to launch logmon, try again below
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
// create a new client in initial starts, failed reattachment, or if we detect exits
|
|
if h.logmonPluginClient == nil || h.logmonPluginClient.Exited() {
|
|
if err := h.launchLogMon(nil); err != nil {
|
|
// Retry errors launching logmon as logmon may have crashed on start and
|
|
// subsequent attempts will start a new one.
|
|
h.logger.Error("failed to launch logmon process", "error", err)
|
|
return structs.NewRecoverableError(err, true)
|
|
}
|
|
}
|
|
|
|
err := h.logmon.Start(&logmon.LogConfig{
|
|
LogDir: h.config.logDir,
|
|
StdoutLogFile: fmt.Sprintf("%s.stdout", req.Task.Name),
|
|
StderrLogFile: fmt.Sprintf("%s.stderr", req.Task.Name),
|
|
StdoutFifo: h.config.stdoutFifo,
|
|
StderrFifo: h.config.stderrFifo,
|
|
MaxFiles: req.Task.LogConfig.MaxFiles,
|
|
MaxFileSizeMB: req.Task.LogConfig.MaxFileSizeMB,
|
|
})
|
|
if err != nil {
|
|
h.logger.Error("failed to start logmon", "error", err)
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (h *logmonHook) Stop(_ context.Context, req *interfaces.TaskStopRequest, _ *interfaces.TaskStopResponse) error {
|
|
if h.isLoggingDisabled() {
|
|
return nil
|
|
}
|
|
|
|
// It's possible that Stop was called without calling Prestart on agent
|
|
// restarts. Attempt to reattach to an existing logmon.
|
|
if h.logmon == nil || h.logmonPluginClient == nil {
|
|
if err := h.reattach(req); err != nil {
|
|
h.logger.Trace("error reattaching to logmon when stopping", "error", err)
|
|
}
|
|
}
|
|
|
|
if h.logmon != nil {
|
|
h.logmon.Stop()
|
|
}
|
|
if h.logmonPluginClient != nil {
|
|
h.logmonPluginClient.Kill()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// reattach to a running logmon if possible. Will not start a new logmon.
|
|
func (h *logmonHook) reattach(req *interfaces.TaskStopRequest) error {
|
|
reattachConfig, err := reattachConfigFromHookData(req.ExistingState)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Give up if there's no reattach config
|
|
if reattachConfig == nil {
|
|
return nil
|
|
}
|
|
|
|
return h.launchLogMon(reattachConfig)
|
|
}
|