-
Notifications
You must be signed in to change notification settings - Fork 9
/
plugin.go
408 lines (337 loc) · 8.88 KB
/
plugin.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
package rrtemporal
import (
"context"
"crypto/tls"
"fmt"
"io"
"strconv"
"strings"
"sync"
"time"
"github.com/roadrunner-server/endure/v2/dep"
"github.com/roadrunner-server/errors"
"github.com/roadrunner-server/events"
"github.com/roadrunner-server/pool/pool/static_pool"
"github.com/roadrunner-server/pool/state/process"
"github.com/temporalio/roadrunner-temporal/v5/aggregatedpool"
"github.com/temporalio/roadrunner-temporal/v5/common"
"github.com/temporalio/roadrunner-temporal/v5/internal"
"github.com/temporalio/roadrunner-temporal/v5/internal/codec/proto"
tclient "go.temporal.io/sdk/client"
"go.temporal.io/sdk/worker"
"go.uber.org/zap"
)
const (
// PluginName defines public service name.
pluginName string = "temporal"
metricsKey string = "temporal.metrics"
// RrMode env variable key
RrMode string = "RR_MODE"
// RrCodec env variable key
RrCodec string = "RR_CODEC"
// RrCodecVal - codec name should be in sync with the PHP-SDK
RrCodecVal string = "protobuf"
// temporal, sync with https://github.com/temporalio/sdk-go/blob/master/internal/internal_utils.go#L44
clientNameHeaderName = "client-name"
clientNameHeaderValue = "temporal-php-2"
clientVersionHeaderName = "client-version"
clientBaselineVersion = "2.5.0"
)
type Logger interface {
NamedLogger(name string) *zap.Logger
}
// temporal structure contains temporal specific structures
type temporal struct {
rrActivityDef *aggregatedpool.Activity
rrWorkflowDef *aggregatedpool.Workflow
workflows map[string]*internal.WorkflowInfo
activities map[string]*internal.ActivityInfo
mh tclient.MetricsHandler
tallyCloser io.Closer
tlsCfg *tls.Config
client tclient.Client
workers []worker.Worker
interceptors map[string]common.Interceptor
}
type Plugin struct {
mu sync.RWMutex
server common.Server
log *zap.Logger
config *Config
statsExporter *StatsExporter
codec *proto.Codec
actP *static_pool.Pool
wfP *static_pool.Pool
id string
wwPID int
rrVersion string
temporal *temporal
eventBus events.EventBus
events chan events.Event
stopCh chan struct{}
}
func (p *Plugin) Init(cfg common.Configurer, log Logger, server common.Server) error {
const op = errors.Op("temporal_plugin_init")
if !cfg.Has(pluginName) {
return errors.E(op, errors.Disabled)
}
err := cfg.UnmarshalKey(pluginName, &p.config)
if err != nil {
return errors.E(op, err)
}
/*
Parse metrics configuration
default (no BC): prometheus
*/
if p.config.Metrics != nil {
switch p.config.Metrics.Driver {
case driverPrometheus:
err = cfg.UnmarshalKey(metricsKey, &p.config.Metrics.Prometheus)
if err != nil {
return errors.E(op, err)
}
case driverStatsd:
err = cfg.UnmarshalKey(metricsKey, &p.config.Metrics.Statsd)
if err != nil {
return errors.E(op, err)
}
default:
err = cfg.UnmarshalKey(metricsKey, &p.config.Metrics.Prometheus)
if err != nil {
return errors.E(op, err)
}
}
}
err = p.config.InitDefault()
if err != nil {
return errors.E(op, err)
}
// init temporal section
p.temporal = &temporal{}
// CONFIG INIT END -----
p.log = log.NamedLogger(pluginName)
p.server = server
p.rrVersion = cfg.RRVersion()
// events
p.events = make(chan events.Event, 1)
p.eventBus, p.id = events.NewEventBus()
p.stopCh = make(chan struct{}, 1)
p.statsExporter = newStatsExporter(p)
// initialize TLS
if p.config.TLS != nil {
p.temporal.tlsCfg, err = initTLS(p.config)
if err != nil {
return errors.E(op, err)
}
}
// here we need to check
if p.config.Metrics != nil {
p.temporal.mh, p.temporal.tallyCloser, err = initMetrics(p.config, p.log)
if err != nil {
return errors.E(op, err)
}
}
// initialize interceptors
p.temporal.interceptors = make(map[string]common.Interceptor)
return nil
}
func (p *Plugin) Serve() chan error {
errCh := make(chan error, 1)
const op = errors.Op("temporal_plugin_serve")
p.mu.Lock()
defer p.mu.Unlock()
err := p.initPool()
if err != nil {
errCh <- errors.E(op, err)
return errCh
}
err = p.eventBus.SubscribeP(p.id, fmt.Sprintf("*.%s", events.EventWorkerStopped.String()), p.events)
if err != nil {
errCh <- errors.E(op, err)
return errCh
}
go func() {
for {
select {
case ev := <-p.events:
p.log.Debug("worker stopped, restarting pool and temporal workers", zap.String("message", ev.Message()))
// check pid, message from the go sdk is: process exited, pid: 334455 <-- we are looking for this pid
// sdk 2.18.1
switch strings.Contains(ev.Message(), strconv.Itoa(p.wwPID)) {
// stopped workflow worker
case true:
errR := p.Reset()
if errR != nil {
errCh <- errors.E(op, errors.Errorf("error during reset: %#v, event: %s", errR, ev.Message()))
return
}
// stopped one of the activity workers
case false:
errR := p.ResetAP()
if errR != nil {
errCh <- errors.E(op, errors.Errorf("error during reset: %#v, event: %s", errR, ev.Message()))
return
}
}
case <-p.stopCh:
return
}
}
}()
return errCh
}
func (p *Plugin) Stop(ctx context.Context) error {
doneCh := make(chan struct{}, 1)
go func() {
p.mu.Lock()
defer p.mu.Unlock()
// stop events
p.eventBus.Unsubscribe(p.id)
p.stopCh <- struct{}{}
p.eventBus = nil
// destroy worker pools
// WP
if p.wfP != nil {
p.wfP.Destroy(ctx)
}
// ACT pool
if p.actP != nil {
p.actP.Destroy(ctx)
}
// stop receiving tasks
for i := 0; i < len(p.temporal.workers); i++ {
p.temporal.workers[i].Stop()
}
// might be nil if the user didn't set the metrics
if p.temporal.tallyCloser != nil {
// there might be a panic if the io.Closer is not nil, but the actual type is nil
err := p.temporal.tallyCloser.Close()
if err != nil {
p.mu.Unlock()
}
}
// in case if the Serve func was interrupted
if p.temporal.client != nil {
p.temporal.client.Close()
}
doneCh <- struct{}{}
}()
select {
case <-ctx.Done():
return ctx.Err()
case <-doneCh:
return nil
}
}
func (p *Plugin) Workers() []*process.State {
p.mu.RLock()
defer p.mu.RUnlock()
wfPw := p.wfP.Workers()
actPw := p.actP.Workers()
states := make([]*process.State, 0, len(wfPw)+len(actPw))
for i := 0; i < len(wfPw); i++ {
st, err := process.WorkerProcessState(wfPw[i])
if err != nil {
// log error and continue
p.log.Error("worker process state error", zap.Error(err))
continue
}
states = append(states, st)
}
for i := 0; i < len(actPw); i++ {
st, err := process.WorkerProcessState(actPw[i])
if err != nil {
// log error and continue
p.log.Error("worker process state error", zap.Error(err))
continue
}
states = append(states, st)
}
return states
}
func (p *Plugin) ResetAP() error {
const op = errors.Op("temporal_plugin_reset")
p.mu.Lock()
defer p.mu.Unlock()
p.log.Info("reset signal received, resetting activity pool")
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
defer cancel()
errAp := p.actP.Reset(ctx)
if errAp != nil {
return errors.E(op, errAp)
}
p.log.Info("activity pool restarted")
return nil
}
func (p *Plugin) Reset() error {
const op = errors.Op("temporal_reset")
p.mu.Lock()
defer p.mu.Unlock()
p.log.Info("reset signal received, resetting activity and workflow worker pools")
// stop temporal workers
for i := 0; i < len(p.temporal.workers); i++ {
p.temporal.workers[i].Stop()
}
p.temporal.workers = nil
worker.PurgeStickyWorkflowCache()
ctxW, cancelW := context.WithTimeout(context.Background(), time.Second*30)
defer cancelW()
errWp := p.wfP.Reset(ctxW)
if errWp != nil {
return errors.E(op, errWp)
}
p.log.Info("workflow pool restarted")
ctxA, cancelA := context.WithTimeout(context.Background(), time.Second*30)
defer cancelA()
errAp := p.actP.Reset(ctxA)
if errAp != nil {
return errors.E(op, errAp)
}
p.log.Info("activity pool restarted")
// get worker info
wi, err := WorkerInfo(p.codec, p.wfP, p.rrVersion)
if err != nil {
return err
}
// based on the worker info -> initialize workers
workers, err := aggregatedpool.TemporalWorkers(
p.temporal.rrWorkflowDef,
p.temporal.rrActivityDef,
wi,
p.log,
p.temporal.client,
p.temporal.interceptors,
)
if err != nil {
return err
}
// start workers
for i := 0; i < len(workers); i++ {
err = workers[i].Start()
if err != nil {
return err
}
}
p.temporal.activities = ActivitiesInfo(wi)
p.temporal.workflows = WorkflowsInfo(wi)
p.temporal.workers = workers
return nil
}
// Collects collecting grpc interceptors
func (p *Plugin) Collects() []*dep.In {
return []*dep.In{
dep.Fits(func(pp any) {
mdw := pp.(common.Interceptor)
// just to be safe
p.mu.Lock()
p.temporal.interceptors[mdw.Name()] = mdw
p.mu.Unlock()
}, (*common.Interceptor)(nil)),
}
}
func (p *Plugin) Name() string {
return pluginName
}
func (p *Plugin) RPC() any {
return &rpc{plugin: p, client: p.temporal.client}
}