-
Notifications
You must be signed in to change notification settings - Fork 1
/
controller_nats.go
640 lines (533 loc) · 16.5 KB
/
controller_nats.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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
package ctrl
import (
"context"
"encoding/json"
"fmt"
"os"
"runtime/debug"
"sync"
"sync/atomic"
"time"
"github.com/metal-toolbox/rivets/condition"
"github.com/metal-toolbox/rivets/events"
"github.com/nats-io/nats.go"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/trace"
)
const (
pkgName = "events/natscontroller"
// Default connection timeout
connectionTimeout = 1 * time.Minute
// Default timeout for the condition handler, after which its canceled
handlerTimeout = 180 * time.Minute
// Default pull event interval
pullEventInterval = 1 * time.Second
// Default timeout for pulling a new event from the JS
pullEventTimeout = 5 * time.Second
// Default concurrency
concurrency = 2
// controller check in interval
checkinInterval = 30 * time.Second
// periodically publish an updated status
statusInterval = checkinInterval
// condition status considered stale after this period
StatusStaleThreshold = condition.StaleThreshold
// controller considered dead after this period
LivenessStaleThreshold = condition.StaleThreshold
// default number of KV replicas for created NATS buckets
kvReplicationFactor = 3
)
var (
// This error when returned by the callback indicates it needs to be retried
ErrRetryHandler = errors.New("retry callback")
)
type NatsController struct {
stream events.Stream
syncWG *sync.WaitGroup
logger *logrus.Logger
natsConfig events.NatsOptions
hostname string
facilityCode string
conditionKind condition.Kind
pullEventInterval time.Duration
pullEventTimeout time.Duration
handlerTimeout time.Duration
connectionTimeout time.Duration
checkinInterval time.Duration
// Factory method returns a condition event handler
// set by the caller when calling ListenEvents()
conditionHandlerFactory ConditionHandlerFactory
// controller liveness interface
liveness LivenessCheckin
concurrency int
dispatched int32
}
// Option sets parameters on the NatsController
type Option func(*NatsController)
func NewNatsController(
appName,
facilityCode,
subjectSuffix,
natsURL,
credsFile string,
conditionKind condition.Kind,
options ...Option) *NatsController {
logger := logrus.New()
logger.Formatter = &logrus.JSONFormatter{}
hostname, _ := os.Hostname()
queueCfg := queueConfig(appName, facilityCode, subjectSuffix, natsURL, credsFile)
nwp := &NatsController{
hostname: hostname,
facilityCode: facilityCode,
conditionKind: conditionKind,
stream: nil,
logger: logger,
syncWG: &sync.WaitGroup{},
connectionTimeout: connectionTimeout,
handlerTimeout: handlerTimeout,
pullEventInterval: pullEventInterval,
pullEventTimeout: pullEventTimeout,
checkinInterval: checkinInterval,
concurrency: concurrency,
natsConfig: queueCfg,
}
for _, opt := range options {
opt(nwp)
}
if nwp.logger.Level == logrus.TraceLevel {
b, err := json.MarshalIndent(queueCfg, "", " ")
if err != nil {
nwp.logger.WithError(err).Errorf("NatsConfig (failed to pretty print): %+v", queueCfg)
} else {
fmt.Printf("NatsConfig: %s\n", string(b))
}
}
return nwp
}
func WithLogger(logger *logrus.Logger) Option {
return func(n *NatsController) {
n.logger = logger
}
}
func WithConcurrency(c int) Option {
return func(n *NatsController) {
n.concurrency = c
}
}
// Set the number of replicates to keep for the
//
// !! In a non-clustered NATS environment, set this value to 0.
func WithKVReplicas(c int) Option {
return func(n *NatsController) {
n.natsConfig.KVReplicationFactor = c
}
}
func WithHandlerTimeout(t time.Duration) Option {
return func(n *NatsController) {
n.handlerTimeout = t
}
}
func WithConnectionTimeout(t time.Duration) Option {
return func(n *NatsController) {
n.natsConfig.ConnectTimeout = t
}
}
func (n *NatsController) ID() string {
return n.liveness.ControllerID().String()
}
func (n *NatsController) FacilityCode() string {
return n.facilityCode
}
// Connect to NATS Jetstream and register as a controller.
func (n *NatsController) Connect(ctx context.Context) error {
ctx, span := otel.Tracer(pkgName).Start(
ctx,
"Connect",
)
defer span.End()
startTS := time.Now()
errInit := errors.New("nats broker init error")
stream, err := events.NewNatsBroker(n.natsConfig)
if err != nil {
return errors.Wrap(errInit, err.Error())
}
errOpen := errors.New("event stream connection error")
if err := stream.Open(); err != nil {
return errors.Wrap(errOpen, err.Error())
}
n.stream = stream
// returned channel ignored, since this is a Pull based subscription.
errStreamSub := errors.New("event stream subscription error")
if _, err := n.stream.Subscribe(ctx); err != nil {
return errors.Wrap(errStreamSub, err.Error())
}
n.liveness = NewNatsLiveness(n.natsConfig, n.stream, n.logger, n.hostname, checkinInterval)
n.liveness.StartLivenessCheckin(ctx)
n.logger.WithFields(
logrus.Fields{
"hostname": n.hostname,
"facility": n.facilityCode,
"replica-count": n.natsConfig.KVReplicationFactor,
"concurrency": n.concurrency,
"connect-time": time.Since(startTS).String(),
},
).Info("connected to event stream as controller")
registerNATSConnectTimeMetric(startTS)
return nil
}
// Handle events accepts a callback function to run when an event is fetched from the NATS JS.
//
// - The caller is expected to enclose any work and error handling for the work within the callback function.
// - When the callback function returns no error, the event is marked as completed.
// - When the callback function returns an ErrRetryHandler error, the corresponding event is placed back on the queue to be retried.
func (n *NatsController) ListenEvents(ctx context.Context, chf ConditionHandlerFactory) error {
ctx, span := otel.Tracer(pkgName).Start(
ctx,
"ListenEvents",
)
defer span.End()
errListenEvents := errors.New("listen events error")
if chf == nil {
return errors.Wrap(errListenEvents, "expected valid ConditionHandlerFactor, got nil")
}
if n.stream == nil {
return errors.Wrap(errListenEvents, "connection not initialized, invoke Connect() before calling this method")
}
n.conditionHandlerFactory = chf
pullTicker := time.NewTicker(n.pullEventInterval)
defer pullTicker.Stop()
Loop:
for {
select {
case <-pullTicker.C:
if n.concurrencyLimit() {
continue
}
if err := n.processEvents(ctx); err != nil {
return errors.Wrap(errListenEvents, err.Error())
}
case <-ctx.Done():
if n.dispatched > 0 {
continue
}
break Loop
}
}
return nil
}
// process event into a condition
func (n *NatsController) processEvents(ctx context.Context) error {
pullCtx, cancel := context.WithTimeout(ctx, n.pullEventTimeout)
defer cancel()
errProcessEvent := errors.New("process event error")
msgs, err := n.stream.PullMsg(pullCtx, 1)
switch {
case err == nil:
case errors.Is(err, nats.ErrTimeout):
n.logger.WithFields(
logrus.Fields{"info": err.Error()},
).Trace("no new events")
return nil
default:
n.logger.WithFields(
logrus.Fields{"err": err.Error()},
).Warn("retrieving new messages")
metricsNATSError("pull-msg")
return errors.Wrap(errProcessEvent, err.Error())
}
for _, msg := range msgs {
if n.concurrencyLimit() {
return nil
}
// event status setter to keep the JS updated on our progress
eventAcknowleger := n.newNatsEventStatusAcknowleger(msg)
if ctx.Err() != nil {
eventAcknowleger.nak()
return errors.Wrap(errProcessEvent, ctx.Err().Error())
}
// spawn msg process handler
n.syncWG.Add(1)
go n.processConditionFromEvent(ctx, msg, eventAcknowleger)
}
return nil
}
func (n *NatsController) processConditionFromEvent(ctx context.Context, msg events.Message, eventAcknowleger eventStatusAcknowleger) {
defer n.syncWG.Done()
ctx, span := otel.Tracer(pkgName).Start(
ctx,
"processConditionFromEvent",
)
atomic.AddInt32(&n.dispatched, 1)
defer atomic.AddInt32(&n.dispatched, -1)
cond, err := conditionFromEvent(msg)
if err != nil {
n.logger.WithError(err).WithField(
"subject", msg.Subject()).Warn("unable to retrieve condition from message")
spanEvent(span, cond, n.ID(), "sent ack, unable to retrieve condition from message: "+err.Error())
metricsEventsCounter(false, "ack")
eventAcknowleger.complete()
return
}
// extract parent trace context from the event located in the NATS header.
//
// The NATs header is to be deprecated as the Condition object
// now includes the trace, span IDs.
ctx = msg.ExtractOtelTraceContext(ctx)
if cond.TraceID != "" && cond.SpanID != "" {
// set remote span context
remoteSpanCtx, errSpan := traceSpaceContextFromValues(cond.TraceID, cond.SpanID)
if errSpan != nil {
n.logger.Debug(errSpan.Error())
} else {
// overwrite span context with remote span when available
ctx, span = otel.Tracer(pkgHTTPController).Start(
trace.ContextWithRemoteSpanContext(ctx, remoteSpanCtx),
"processConditionFromEvent",
)
defer span.End()
}
}
// setup the handle to query condition status
conditionStatusQueryor, err := n.NewNatsConditionStatusQueryor()
if err != nil {
eventAcknowleger.nak()
n.logger.WithField(
"conditionID", cond.ID.String(),
).WithError(err).Error("failed to initialize Condition status queryor")
return
}
// check current state is finalized
if n.stateFinalized(ctx, cond, conditionStatusQueryor, eventAcknowleger) {
return
}
// init publisher
publisher, err := NewNatsPublisher(
n.natsConfig.AppName,
cond.ID.String(),
cond.Target.String(),
n.facilityCode,
n.conditionKind,
n.liveness.ControllerID(),
n.natsConfig.KVReplicationFactor,
n.stream.(*events.NatsJetstream),
n.logger,
)
if err != nil {
msg := "publisher init failed"
n.logger.WithError(err).WithFields(logrus.Fields{
"conditionID": cond.ID.String(),
}).Error(msg)
// send this message back on the bus to be redelivered, or atleast attempt to.
eventAcknowleger.nak()
metricsEventsCounter(true, "nack")
spanEvent(
span,
cond,
n.ID(),
fmt.Sprintf("sent nack, info: %s, err: %s", msg, err.Error()),
)
return
}
n.processCondition(ctx, cond, publisher, eventAcknowleger)
}
func conditionFromEvent(e events.Message) (*condition.Condition, error) {
errConditionDeserialize := errors.New("unable to deserialize condition")
data := e.Data()
if data == nil {
return nil, errors.Wrap(errConditionDeserialize, "data field empty")
}
cond := &condition.Condition{}
if err := json.Unmarshal(data, cond); err != nil {
return nil, errors.Wrap(errConditionDeserialize, err.Error())
}
return cond, nil
}
func (n *NatsController) stateFinalized(
ctx context.Context,
cond *condition.Condition,
conditionStatusQueryor ConditionStatusQueryor,
eventAcknowleger eventStatusAcknowleger, // the NATS JS event status ack interface
) bool {
_, span := otel.Tracer(pkgName).Start(
ctx,
"stateFinalized",
)
defer span.End()
// check and see if the condition is or has-been handled by another controller
currentState := conditionStatusQueryor.ConditionState(cond.ID.String())
le := n.logger.WithFields(logrus.Fields{
"conditionID": cond.ID.String(),
"state": cond.State,
"lifecycle-state": currentState,
})
switch currentState {
case inProgress:
le.Info("condition is already in progress")
eventAcknowleger.inProgress()
spanEvent(span, cond, n.ID(), "ackInProgress")
return true
case complete:
le.Info("condition is complete")
eventAcknowleger.complete()
spanEvent(span, cond, n.ID(), "ackComplete")
return true
case orphaned:
le.Info("restarting this condition")
eventAcknowleger.inProgress()
spanEvent(span, cond, n.ID(), "restarting condition")
return false
case notStarted:
le.Info("starting new condition")
eventAcknowleger.inProgress()
spanEvent(span, cond, n.ID(), "start new condition")
return false
// break out here, this is a new event
case indeterminate:
le.Warn("unable to determine state of this condition")
// send it back to NATS to try again
eventAcknowleger.nak()
spanEvent(span, cond, n.ID(), "sent nack, indeterminate state")
return true
default:
le.Warn("unexpected state")
eventAcknowleger.complete()
spanEvent(span, cond, n.ID(), "ackComplete")
return true
}
}
// process condition
func (n *NatsController) processCondition(
ctx context.Context,
cond *condition.Condition,
publisher Publisher, // Task, Status KV publisher
eventAcknowleger eventStatusAcknowleger, // the NATS JS event status ack interface
) {
ctx, span := otel.Tracer(pkgName).Start(
ctx,
"processCondition",
)
defer span.End()
// measure runtime
startTS := time.Now()
span.SetAttributes(
attribute.KeyValue{
Key: "conditionKind",
Value: attribute.StringValue(cond.ID.String()),
},
)
// create first record of condition in controller KV
//
// failure to publish the first status KV record is fatal
task := condition.NewTaskFromCondition(cond)
task.Status = condition.NewTaskStatusRecord("In process by controller: " + n.hostname)
// default trace, span IDs to controller context
if cond.TraceID == "" && cond.SpanID == "" {
task.TraceID = trace.SpanFromContext(ctx).SpanContext().TraceID().String()
task.SpanID = trace.SpanFromContext(ctx).SpanContext().SpanID().String()
}
if err := publisher.Publish(ctx, task, false); err != nil {
msg := "error publishing first KV status record, condition aborted"
n.logger.WithError(err).WithFields(logrus.Fields{
"conditionID": cond.ID.String(),
}).Error(msg)
// send this message back on the bus to be redelivered, or atleast attempt to.
eventAcknowleger.nak()
metricsEventsCounter(true, "nack")
spanEvent(
span,
cond,
n.ID(),
fmt.Sprintf("sent nack, info: %s, err: %s", msg, err.Error()),
)
return
}
// mark message as complete in th JS as the status KV record is in place
eventAcknowleger.complete()
handlerCtx, cancel := context.WithTimeout(ctx, n.handlerTimeout)
defer cancel()
errHandler := n.runTaskHandlerWithMonitor(handlerCtx, task, publisher, statusInterval)
if errHandler != nil {
registerConditionRuntimeMetric(startTS, string(condition.Failed))
// handler indicates this must be retried
if errors.Is(errHandler, ErrRetryHandler) {
// Theres no retrying a Condition once its ack'ed in the JS as complete, this error condition is to be removed.
n.logger.WithError(errHandler).Warn("condition handler returned retry error")
}
// other errors are logged
n.logger.WithError(errHandler).Error("condition handler returned error")
spanEvent(
span,
cond,
n.ID(),
"condition completed with errors: "+errHandler.Error(),
)
return
}
registerConditionRuntimeMetric(startTS, string(condition.Succeeded))
spanEvent(
span,
cond,
n.ID(),
"condition completed successfully",
)
}
func (n *NatsController) runTaskHandlerWithMonitor(ctx context.Context, task *condition.Task[any, any], publisher Publisher, statusInterval time.Duration) (err error) {
ctx, span := otel.Tracer(pkgName).Start(
ctx,
"runTaskHandlerWithMonitor",
)
defer span.End()
// local publish helper method
publish := func(state condition.State, status string, tsUpdateOnly bool) {
if !tsUpdateOnly {
// append to existing status record, unless it was overwritten by the controller somehow
task.Status.Append(status)
task.State = state
}
if errPublish := publisher.Publish(
ctx,
task,
tsUpdateOnly,
); errPublish != nil {
n.logger.WithError(errPublish).Error("failed to publish update")
}
}
// doneCh indicates the handler run completed
doneCh := make(chan bool)
// monitor updates TS on status until the task handler returns.
monitor := func() {
ticker := time.NewTicker(statusInterval)
defer ticker.Stop()
// periodically update the UpdateAt timestamp,
// which keeps the Orchestrator from reconciling this condition.
Loop:
for {
select {
case <-ticker.C:
publish(condition.Active, "", true)
case <-doneCh:
break Loop
}
}
}
go monitor()
defer close(doneCh)
// panic handler
defer func() {
if rec := recover(); rec != nil {
// overwrite returned err - declared in func signature
err = errors.New("Panic occurred while running Condition handler")
n.logger.Printf("!!panic %s: %s", rec, debug.Stack())
n.logger.Error(err)
publish(condition.Failed, "Fatal error running Condition, check logs for details", false)
}
}() // nolint:errcheck // nope
return n.conditionHandlerFactory().HandleTask(ctx, task, publisher)
}
func (n *NatsController) concurrencyLimit() bool {
//nolint:gosec //We are never going to overflow this
return n.dispatched >= int32(n.concurrency)
}