-
Notifications
You must be signed in to change notification settings - Fork 86
/
amqp_job.go
301 lines (237 loc) · 6.99 KB
/
amqp_job.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
package worker
import (
"encoding/json"
"fmt"
"time"
gocontext "context"
"github.com/Jeffail/tunny"
"github.com/bitly/go-simplejson"
amqp "github.com/rabbitmq/amqp091-go"
"github.com/sirupsen/logrus"
"github.com/travis-ci/worker/backend"
"github.com/travis-ci/worker/context"
"github.com/travis-ci/worker/metrics"
"go.opencensus.io/trace"
)
type amqpJob struct {
conn *amqp.Connection
stateUpdatePool *tunny.Pool
logWriterChan *amqp.Channel
delivery amqp.Delivery
payload *JobPayload
rawPayload *simplejson.Json
startAttributes *backend.StartAttributes
received time.Time
started time.Time
finished time.Time
finishState FinishState
requeued bool
stateCount uint
withLogSharding bool
}
func (j *amqpJob) GoString() string {
return fmt.Sprintf("&amqpJob{conn: %#v, delivery: %#v, payload: %#v, startAttributes: %#v}",
j.conn, j.delivery, j.payload, j.startAttributes)
}
func (j *amqpJob) Payload() *JobPayload {
return j.payload
}
func (j *amqpJob) RawPayload() *simplejson.Json {
return j.rawPayload
}
func (j *amqpJob) StartAttributes() *backend.StartAttributes {
return j.startAttributes
}
func (j *amqpJob) FinishState() FinishState {
return j.finishState
}
func (j *amqpJob) Requeued() bool {
return j.requeued
}
func (j *amqpJob) Error(ctx gocontext.Context, errMessage string) error {
ctx, span := trace.StartSpan(ctx, "amqpJob.Error")
defer span.End()
log, err := j.LogWriter(ctx, time.Minute)
if err != nil {
return err
}
_, err = log.WriteAndClose([]byte(errMessage))
if err != nil {
return err
}
return j.Finish(ctx, FinishStateErrored)
}
func (j *amqpJob) Requeue(ctx gocontext.Context) error {
ctx, span := trace.StartSpan(ctx, "amqpJob.Requeue")
defer span.End()
context.LoggerFromContext(ctx).WithFields(
logrus.Fields{
"self": "amqp_job",
"job_id": j.Payload().Job.ID,
"repository": j.Payload().Repository.Slug,
}).Info("requeueing job")
metrics.Mark("worker.job.requeue")
j.requeued = true
err := j.sendStateUpdate(ctx, "job:test:reset", "reset")
if err != nil {
return err
}
return j.delivery.Ack(false)
}
func (j *amqpJob) Received(ctx gocontext.Context) error {
ctx, span := trace.StartSpan(ctx, "amqpJob.Received")
defer span.End()
j.received = time.Now()
if j.payload.Job.QueuedAt != nil {
metrics.TimeSince("travis.worker.job.queue_time", *j.payload.Job.QueuedAt)
}
return j.sendStateUpdate(ctx, "job:test:receive", "received")
}
func (j *amqpJob) Started(ctx gocontext.Context) error {
ctx, span := trace.StartSpan(ctx, "amqpJob.Started")
defer span.End()
j.started = time.Now()
metrics.TimeSince("travis.worker.job.start_time", j.received)
return j.sendStateUpdate(ctx, "job:test:start", "started")
}
func (j *amqpJob) Finish(ctx gocontext.Context, state FinishState) error {
ctx, span := trace.StartSpan(ctx, "amqpJob.Finished")
defer span.End()
j.finishState = state
j.finished = time.Now()
if j.received.IsZero() {
j.received = j.finished
}
if j.started.IsZero() {
j.started = j.finished
}
context.LoggerFromContext(ctx).WithFields(logrus.Fields{
"state": state,
"self": "amqp_job",
"job_id": j.Payload().Job.ID,
"repository": j.Payload().Repository.Slug,
"job_duration_ms": j.finished.Sub(j.started).Seconds() * 1e3,
}).Info("finishing job")
metrics.Mark(fmt.Sprintf("travis.worker.job.finish.%s", state))
metrics.Mark("travis.worker.job.finish")
err := j.sendStateUpdate(ctx, "job:test:finish", string(state))
if err != nil {
return err
}
return j.delivery.Ack(false)
}
func (j *amqpJob) LogWriter(ctx gocontext.Context, defaultLogTimeout time.Duration) (LogWriter, error) {
logTimeout := time.Duration(j.payload.Timeouts.LogSilence) * time.Second
if logTimeout == 0 {
logTimeout = defaultLogTimeout
}
return newAMQPLogWriter(ctx, j.logWriterChan, j.payload.Job.ID, logTimeout, j.withLogSharding)
}
func (j *amqpJob) createStateUpdateBody(ctx gocontext.Context, state string) map[string]interface{} {
body := map[string]interface{}{
"id": j.Payload().Job.ID,
"state": state,
"meta": map[string]interface{}{
"state_update_count": j.stateCount,
},
}
if instanceID, ok := context.InstanceIDFromContext(ctx); ok {
body["meta"].(map[string]interface{})["instance_id"] = instanceID
}
if uuid, ok := context.UUIDFromContext(ctx); ok {
body["meta"].(map[string]interface{})["uuid"] = uuid
}
if j.startAttributes.VMSize != "" {
body["vm_size"] = j.startAttributes.VMSize
}
if j.Payload().Job.QueuedAt != nil {
body["queued_at"] = j.Payload().Job.QueuedAt.UTC().Format(time.RFC3339)
}
if !j.received.IsZero() {
body["received_at"] = j.received.UTC().Format(time.RFC3339)
}
if !j.started.IsZero() {
body["started_at"] = j.started.UTC().Format(time.RFC3339)
}
if !j.finished.IsZero() {
body["finished_at"] = j.finished.UTC().Format(time.RFC3339)
}
if j.Payload().Trace {
body["trace"] = true
}
return body
}
func (j *amqpJob) sendStateUpdate(ctx gocontext.Context, event, state string) error {
ctx, span := trace.StartSpan(ctx, "amqpJob.sendStateUpdate")
defer span.End()
err := j.stateUpdatePool.Process(&amqpStateUpdatePayload{
job: j,
ctx: ctx,
event: event,
state: state,
body: j.createStateUpdateBody(ctx, state),
})
if err == nil {
return nil
}
return err.(error)
}
func (j *amqpJob) SetupContext(ctx gocontext.Context) gocontext.Context {
return ctx
}
func (j *amqpJob) Name() string { return "amqp" }
type amqpStateUpdatePayload struct {
job *amqpJob
ctx gocontext.Context
event string
state string
body map[string]interface{}
}
type amqpStateUpdateWorker struct {
stateUpdateChan *amqp.Channel
ctx gocontext.Context
cancel gocontext.CancelFunc
}
func (w *amqpStateUpdateWorker) Process(payload interface{}) interface{} {
p := payload.(*amqpStateUpdatePayload)
ctx, cancel := gocontext.WithCancel(p.ctx)
w.ctx = ctx
w.cancel = cancel
return w.sendStateUpdate(p)
}
func (w *amqpStateUpdateWorker) BlockUntilReady() {
// we do not need to perform any warm-up before processing jobs.
// Process() will block for the duration of the job itself.
}
func (w *amqpStateUpdateWorker) Interrupt() {
w.cancel()
}
func (w *amqpStateUpdateWorker) Terminate() {
err := w.stateUpdateChan.Close()
if err != nil {
time.Sleep(time.Minute)
logrus.WithFields(logrus.Fields{
"self": "amqp_state_update_worker",
"err": err,
}).Panic("timed out waiting for shutdown after amqp connection error")
}
}
func (w *amqpStateUpdateWorker) sendStateUpdate(payload *amqpStateUpdatePayload) error {
select {
case <-w.ctx.Done():
return w.ctx.Err()
default:
}
payload.job.stateCount++
bodyBytes, err := json.Marshal(payload.body)
if err != nil {
return err
}
return w.stateUpdateChan.Publish("", "reporting.jobs.builds", false, false, amqp.Publishing{
ContentType: "application/json",
DeliveryMode: amqp.Persistent,
Timestamp: time.Now().UTC(),
Type: payload.event,
Body: bodyBytes,
})
}