forked from allegro/mesos-executor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
executor.go
545 lines (479 loc) · 18.6 KB
/
executor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
package executor
import (
"context"
"crypto/x509"
"errors"
"fmt"
"io"
"net/url"
"os"
"os/exec"
"strconv"
"strings"
"time"
mesos "github.com/mesos/mesos-go/api/v1/lib"
"github.com/mesos/mesos-go/api/v1/lib/backoff"
"github.com/mesos/mesos-go/api/v1/lib/encoding"
"github.com/mesos/mesos-go/api/v1/lib/executor"
"github.com/mesos/mesos-go/api/v1/lib/executor/calls"
"github.com/mesos/mesos-go/api/v1/lib/executor/config"
"github.com/mesos/mesos-go/api/v1/lib/httpcli"
log "github.com/sirupsen/logrus"
"github.com/allegro/mesos-executor/hook"
"github.com/allegro/mesos-executor/mesosutils"
"github.com/allegro/mesos-executor/servicelog"
"github.com/allegro/mesos-executor/servicelog/appender"
"github.com/allegro/mesos-executor/servicelog/scraper"
"github.com/allegro/mesos-executor/state"
)
// EnvironmentPrefix is a prefix for environmental configuration
const EnvironmentPrefix = "allegro_executor"
// Config settable from the environment
type Config struct {
// Sets logging level to `debug` when true, `info` otherwise
Debug bool `default:"false" split_words:"true"`
// Mesos API path
APIPath string `default:"/api/v1/executor" split_words:"true"`
// Delay between sending TERM and KILL signals
KillPolicyGracePeriod time.Duration `default:"5s" split_words:"true"`
// Timeout for communication with Mesos
HTTPTimeout time.Duration `default:"10s" split_words:"true"`
// Number of state messages to keep in buffer
StateUpdateBufferSize int `default:"1024" split_words:"true"`
// Timeout for attempts to send messages in buffer
StateUpdateWaitTimeout time.Duration `default:"5s" split_words:"true"`
// Mesos framework configuration
MesosConfig config.Config `ignore:"true"`
// SentryDSN is an address used for sending logs to Sentry
SentryDSN string `split_words:"true"`
// ServicelogBufferSize sets a line buffer size used by log scraping module
ServicelogBufferSize uint `default:"2000" split_words:"true"`
// ServicelogIgnoreKeys is a list of ignored keys for log scraping module
ServicelogIgnoreKeys []string `split_words:"true"`
// Range in which certificate will be considered as expired. Used to
// prevent shutdown of all tasks at once.
RandomExpirationRange time.Duration `default:"3h" split_words:"true"`
}
var errMustAbort = errors.New("received abort signal from mesos, will attempt to re-subscribe")
// Executor is responsible for launching and monitoring single Mesos task.
type Executor struct {
config Config
context context.Context
contextCancel context.CancelFunc
framework mesos.FrameworkInfo
hookManager hook.Manager
stateUpdater state.Updater
events chan Event
clock clock
random random
}
// Event is an internal executor event that triggers specific actions driven
// by current state and Type.
type Event struct {
Type EventType
// Message store the human readable information about
// current event. For example reason of the event or
// additional debug message.
Message string
// TODO(medzin): remove abstractions, because they only obscure all the communication
kill executor.Event_Kill
subscribed executor.Event_Subscribed
launch executor.Event_Launch
}
// EventType defines type of the Event.
type EventType int
const (
// Healthy means task health check passed and task healthy.
Healthy EventType = iota
// Unhealthy means task health check failed. Fail reason should be
// passed in Event Message field.
Unhealthy
// FailedDueToUnhealthy means task health check failed and task should be killed
// because it's unhealthy for longer period of time. Fail reason should be
// passed in Event Message field.
FailedDueToUnhealthy
// FailedDueToExpiredCertificate means task certificate expired (or will expire soon)
// and task should be killed because it can't work with invalid certificate.
FailedDueToExpiredCertificate
// CommandExited means command has exited. Message should contains information
// about exit code.
CommandExited
// Kill means command should be killed and executor exit.
Kill
// Shutdown means executor should kill all tasks and exit.
Shutdown
// Subscribed means executor attach to mesos Agent.
Subscribed
// Launch means executor should start a task.
Launch
)
// NewExecutor creates new instance of executor configured with by `cfg` with hooks
func NewExecutor(cfg Config, hooks ...hook.Hook) *Executor {
log.Info("Initializing executor with following configuration:")
log.Infof("AgentEndpoint = %s", cfg.MesosConfig.AgentEndpoint)
log.Infof("Checkpoint = %t", cfg.MesosConfig.Checkpoint)
log.Infof("Directory = %s", cfg.MesosConfig.Directory)
log.Infof("ExecutorID = %s", cfg.MesosConfig.ExecutorID)
log.Infof("ExecutorShutdownGracePeriod = %s", cfg.MesosConfig.ExecutorShutdownGracePeriod)
log.Infof("FrameworkID = %s", cfg.MesosConfig.FrameworkID)
log.Infof("RecoveryTimeout = %s", cfg.MesosConfig.RecoveryTimeout)
log.Infof("SubscriptionBackoffMax = %s", cfg.MesosConfig.SubscriptionBackoffMax)
log.Infof("APIPath = %s", cfg.APIPath)
log.Infof("Debug = %t", cfg.Debug)
log.Infof("ServicelogBufferSize = %d", cfg.ServicelogBufferSize)
log.Infof("ServicelogIgnoreKeys = %s", cfg.ServicelogIgnoreKeys)
log.Infof("StateUpdateBufferSize = %d", cfg.StateUpdateBufferSize)
ctx, ctxCancel := context.WithCancel(context.Background())
return &Executor{
config: cfg,
context: ctx,
contextCancel: ctxCancel,
// workaound for the problem when Mesos agent sends many KILL events to
// the executor, and it locks itself on this channel, because after first
// kill nobody is listening to it
events: make(chan Event, 128),
hookManager: hook.Manager{Hooks: hooks},
stateUpdater: state.BufferedUpdater(cfg.MesosConfig, cfg.StateUpdateBufferSize),
clock: systemClock{},
random: newRandom(),
}
}
// StartExecutor creates a new executor instance nad starts it
func StartExecutor(conf Config, hooks []hook.Hook) error {
exec := NewExecutor(sanitizeConfig(conf), hooks...)
return exec.Start()
}
func sanitizeConfig(conf Config) Config {
if conf.RandomExpirationRange <= 0 {
conf.RandomExpirationRange = 3 * time.Hour
}
if conf.APIPath == "" {
conf.APIPath = "/api/v1/executor"
}
if conf.HTTPTimeout <= 0 {
conf.HTTPTimeout = 10 * time.Second
}
if conf.MesosConfig.RecoveryTimeout <= 0 {
conf.MesosConfig.RecoveryTimeout = time.Second
}
if conf.MesosConfig.SubscriptionBackoffMax < time.Second {
conf.MesosConfig.SubscriptionBackoffMax = time.Second
}
return conf
}
// Start registers executor in Mesos agent and waits for events from it.
func (e *Executor) Start() error {
go e.taskEventLoop()
callOptions := executor.CallOptions{
calls.Executor(e.config.MesosConfig.ExecutorID),
calls.Framework(e.config.MesosConfig.FrameworkID),
}
apiURL := url.URL{
Scheme: "http",
Host: e.config.MesosConfig.AgentEndpoint,
Path: e.config.APIPath,
}
httpClient := httpcli.New(
httpcli.Endpoint(apiURL.String()),
httpcli.Codec(&encoding.ProtobufCodec),
httpcli.Do(httpcli.With(httpcli.Timeout(e.config.HTTPTimeout))),
)
shouldConnect := backoff.Notifier(time.Second, e.config.MesosConfig.SubscriptionBackoffMax, nil)
recoveryTimeout := time.NewTimer(e.config.MesosConfig.RecoveryTimeout)
SUBSCRIBE_LOOP:
for {
select {
case <-recoveryTimeout.C:
return fmt.Errorf("failed to re-establish subscription with agent within %v, aborting", e.config.MesosConfig.RecoveryTimeout)
case <-e.context.Done():
log.Info("Executor context cancelled, breaking subscribe loop")
break SUBSCRIBE_LOOP
case <-shouldConnect:
subscribe := calls.Subscribe(nil, e.stateUpdater.GetUnacknowledged()).With(callOptions...)
log.WithField("SubscribeCall", subscribe).Debug("Subscribing to Mesos agent")
resp, err := httpClient.Do(subscribe, httpcli.Close(true))
if err == nil {
err = e.eventLoop(resp.Decoder())
e.handleConnError(err)
if !recoveryTimeout.Stop() {
<-recoveryTimeout.C
}
recoveryTimeout.Reset(e.config.MesosConfig.RecoveryTimeout)
if closeErr := resp.Close(); closeErr != nil {
log.WithError(closeErr).Warn("Error during agent response closing")
}
} else {
e.handleConnError(err)
}
}
}
log.Infof("Trying to to send remaining state updates with %s timeout", e.config.StateUpdateWaitTimeout)
if err := e.stateUpdater.Wait(e.config.StateUpdateWaitTimeout); err != nil { // try to send remaining state updates
log.WithError(err).Error("Unable to send remaining state updates to Mesos agent")
}
return nil
}
func (e *Executor) eventLoop(decoder encoding.Decoder) (err error) {
for err == nil {
select {
case <-e.context.Done():
return nil
default:
var event executor.Event
log.Debug("Decoding event from Mesos agent")
if err = decoder.Invoke(&event); err == nil {
log.WithField("Event", event).Debug("Handling Mesos event")
err = e.handleMesosEvent(event)
}
}
}
return err
}
func (e *Executor) handleMesosEvent(event executor.Event) error {
log.WithField("Type", event.Type).Info("Event received")
log.WithField("Event", event).Debug("Received event data")
switch event.GetType() {
case executor.Event_SUBSCRIBED:
e.events <- Event{Type: Subscribed, subscribed: *event.GetSubscribed()}
case executor.Event_LAUNCH:
e.events <- Event{Type: Launch, launch: *event.GetLaunch()}
case executor.Event_KILL:
e.events <- Event{Type: Kill, kill: *event.GetKill()}
case executor.Event_SHUTDOWN:
e.events <- Event{Type: Shutdown}
case executor.Event_ERROR:
return errMustAbort
case executor.Event_ACKNOWLEDGED:
e.stateUpdater.Acknowledge(event.GetAcknowledged().GetUUID())
default:
log.WithField("Type", event.Type).Warnf("Unknown event type. Event: %s", event.GoString())
}
return nil
}
func (e *Executor) handleConnError(err error) {
if err == io.EOF {
log.Info("Disconnected from Mesos agent")
} else if err != nil {
log.WithError(err).Warn("Mesos agent connection error")
}
}
// taskEventLoop is responsible for receiving updates about task/command/health and handle them.
func (e *Executor) taskEventLoop() {
defer e.contextCancel()
var taskInfo *mesos.TaskInfo
var cmd Command
fireHealthyHook := true
for event := range e.events {
switch event.Type {
case Subscribed:
e.framework = event.subscribed.GetFrameworkInfo()
case Launch:
t := event.launch.GetTask()
taskInfo = &t
var err error
cmd, err = e.launchTask(t)
if err != nil {
msg := fmt.Sprintf("Cannot launch task: %s", err)
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_FAILED, state.OptionalInfo{Message: &msg})
return
}
case Healthy:
if fireHealthyHook {
fireHealthyHook = false
event := hook.Event{
Type: hook.AfterTaskHealthyEvent,
TaskInfo: mesosutils.TaskInfo{TaskInfo: *taskInfo},
}
if _, err := e.hookManager.HandleEvent(event, false); err != nil { // do not ignore errors here, so we will not have an incorrectly configured service
log.WithError(err).Errorf("Error calling after task healthy hooks. Stopping the command.")
msg := fmt.Sprintf("Error calling after task healthy hooks: %s", err)
e.shutDown(taskInfo, cmd)
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_FAILED, state.OptionalInfo{Message: &msg})
return
}
}
healthy := true
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_RUNNING, state.OptionalInfo{Healthy: &healthy})
case Unhealthy:
unhealthy := false
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_RUNNING, state.OptionalInfo{Healthy: &unhealthy, Message: &event.Message})
case FailedDueToUnhealthy:
unhealthy := false
info := state.OptionalInfo{Healthy: &unhealthy, Message: &event.Message}
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_RUNNING, info)
log.WithFields(log.Fields{"TaskID": taskInfo.GetTaskID(), "Reason": event.Message}).Info("Killing task")
e.shutDown(taskInfo, cmd)
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_FAILED, info)
return
case FailedDueToExpiredCertificate:
unhealthy := false
info := state.OptionalInfo{Healthy: &unhealthy, Message: &event.Message}
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_RUNNING, info)
log.WithFields(log.Fields{"TaskID": taskInfo.GetTaskID(), "Reason": event.Message}).Info("Killing task")
e.shutDown(taskInfo, cmd)
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_KILLED, info)
return
case CommandExited:
e.shutDown(taskInfo, cmd)
e.stateUpdater.UpdateWithOptions(taskInfo.GetTaskID(), mesos.TASK_FAILED, state.OptionalInfo{Message: &event.Message})
return
case Kill:
e.shutDown(taskInfo, cmd)
// relaying on TaskInfo can be tricky here, as the launch event may
// be lost, so we will not have it, and agent still waits for some
// TaskStatus with valid ID
taskID := event.kill.GetTaskID()
message := "Task killed due to receiving a kill event from Mesos agent"
e.stateUpdater.UpdateWithOptions(
taskID,
mesos.TASK_KILLED,
state.OptionalInfo{
Message: &message,
},
)
return
case Shutdown:
e.shutDown(taskInfo, cmd)
// it is possible to receive a shutdown without launch
if taskInfo != nil {
message := "Task killed due to receiving a shutdown event from Mesos agent"
e.stateUpdater.UpdateWithOptions(
event.kill.GetTaskID(),
mesos.TASK_KILLED,
state.OptionalInfo{
Message: &message,
},
)
}
}
}
}
func (e *Executor) launchTask(taskInfo mesos.TaskInfo) (Command, error) {
commandInfo := taskInfo.GetExecutor().GetCommand()
e.stateUpdater.Update(taskInfo.GetTaskID(), mesos.TASK_STARTING)
prepareCommandInfo(&commandInfo)
env := os.Environ()
utilTaskInfo := mesosutils.TaskInfo{TaskInfo: taskInfo}
validateCertificate := utilTaskInfo.GetLabelValue("validate-certificate")
if validateCertificate == "true" {
if certificate, err := GetCertFromEnvVariables(env); err != nil {
return nil, fmt.Errorf("problem with certificate: %s", err)
} else if err := e.checkCert(certificate); err != nil {
return nil, fmt.Errorf("problem with certificate: %s", err)
}
}
var cmdOption func(*exec.Cmd) error
switch utilTaskInfo.GetLabelValue("log-scraping") {
case "logstash":
log.Info("Service logs will be forwarded to Logstash")
options, err := e.createOptionsForLogstashServiceLogScrapping(taskInfo)
if err != nil {
return nil, err
}
cmdOption = options
default:
log.Info("Service logs will be forwarded to stdout/stderr")
cmdOption = ForwardCmdOutput()
}
beforeStartEvent := hook.Event{
Type: hook.BeforeTaskStartEvent,
TaskInfo: mesosutils.TaskInfo{TaskInfo: taskInfo},
}
hookEnv, err := e.hookManager.HandleEvent(beforeStartEvent, false)
if err != nil {
return nil, fmt.Errorf("error running hooks before task start: %s", err)
}
cmd, err := NewCommand(commandInfo, append(env, hookEnv...), cmdOption)
if err != nil {
return nil, fmt.Errorf("cannot create command: %s", err)
}
if err := cmd.Start(); err != nil {
return nil, fmt.Errorf("cannot start command: %s", err)
}
go taskExitToEvent(cmd.Wait(), e.events)
e.stateUpdater.Update(taskInfo.GetTaskID(), mesos.TASK_RUNNING)
if taskInfo.GetHealthCheck() != nil {
DoHealthChecks(*taskInfo.GetHealthCheck(), e.events)
}
return cmd, nil
}
func (e *Executor) createOptionsForLogstashServiceLogScrapping(taskInfo mesos.TaskInfo) (func(*exec.Cmd) error, error) {
utilTaskInfo := mesosutils.TaskInfo{TaskInfo: taskInfo}
var values [][]byte
for _, ignoredKey := range e.config.ServicelogIgnoreKeys {
values = append(values, []byte(ignoredKey))
}
filter := scraper.ValueFilter{Values: values}
scr := &scraper.JSON{
KeyFilter: filter,
BufferSize: e.config.ServicelogBufferSize,
ScrapUnmarshallableLogs: utilTaskInfo.GetLabelValue("log-scraping-all") != "",
}
apr, err := appender.LogstashAppenderFromEnv()
if err != nil {
return nil, fmt.Errorf("cannot configure service log scraping: %s", err)
}
scid, err := strconv.Atoi(utilTaskInfo.GetLabelValue("scId"))
if err != nil {
return nil, fmt.Errorf("cannot parse scid: %s", err)
}
extenders := []servicelog.Extender{
servicelog.StaticDataExtender{
Data: map[string]interface{}{
"instance-id": taskInfo.Executor.ExecutorID.GetValue(),
"scid": scid,
},
},
servicelog.SystemDataExtender{},
}
return ScrapCmdOutput(scr, apr, extenders...), nil
}
func (e *Executor) checkCert(cert *x509.Certificate) error {
certDuration := e.clock.Until(cert.NotAfter) - e.random.Duration(e.config.RandomExpirationRange)
if certDuration <= 0 {
return fmt.Errorf("certificate valid period <= 0 - certificate invalid after %s", cert.NotAfter)
}
log.WithField("CertificateExpireDate", cert.NotAfter).Infof(
"Schedule task kill in %s", certDuration)
time.AfterFunc(certDuration, func() {
e.events <- Event{Type: FailedDueToExpiredCertificate, Message: "Certificate expired"}
})
return nil
}
func (e *Executor) shutDown(taskInfo *mesos.TaskInfo, cmd Command) {
if taskInfo == nil || cmd == nil {
return
}
for _, capability := range e.framework.GetCapabilities() {
if capability.GetType() == mesos.FrameworkInfo_Capability_TASK_KILLING_STATE {
e.stateUpdater.Update(taskInfo.GetTaskID(), mesos.TASK_KILLING)
}
}
gracePeriod := e.config.KillPolicyGracePeriod
if ns := taskInfo.GetKillPolicy().GetGracePeriod().GetNanoseconds(); ns > 0 {
gracePeriod = time.Duration(ns)
}
beforeTerminateEvent := hook.Event{
Type: hook.BeforeTerminateEvent,
TaskInfo: mesosutils.TaskInfo{TaskInfo: *taskInfo},
}
_, _ = e.hookManager.HandleEvent(beforeTerminateEvent, true) // ignore errors here, so every hook will have a chance to be called
cmd.Stop(gracePeriod) // blocking call
}
func taskExitToEvent(exitStateChan <-chan TaskExitState, events chan<- Event) {
exitState := <-exitStateChan
switch exitState.Code {
case FailedCode:
events <- Event{Type: CommandExited, Message: fmt.Sprintf("Task exited with an error: %s", exitState.Err.Error())}
case SuccessCode:
events <- Event{Type: CommandExited, Message: "Task exited with success (zero) exit code"}
}
}
// Hack: For Marathon #4952
// https://jira.mesosphere.com/browse/MARATHON-4210
func prepareCommandInfo(commandInfo *mesos.CommandInfo) {
marathonPrefix := fmt.Sprintf("chmod ug+rx '%s' && exec '%s' ", os.Args[0], os.Args[0])
commandLine := strings.TrimPrefix(commandInfo.GetValue(), marathonPrefix)
log.Debugf("Replacing prefix ”%s” from ”%s” results with ”%s”", marathonPrefix, commandInfo.GetValue(), commandLine)
commandInfo.Value = &commandLine
}