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
|
package amqpjobs
import (
"time"
"github.com/cenkalti/backoff/v4"
amqp "github.com/rabbitmq/amqp091-go"
"github.com/spiral/errors"
"github.com/spiral/roadrunner/v2/pkg/events"
"github.com/spiral/roadrunner/v2/plugins/jobs/pipeline"
)
// redialer used to redial to the rabbitmq in case of the connection interrupts
func (c *consumer) redialer() { //nolint:gocognit
go func() {
const op = errors.Op("rabbitmq_redial")
for {
select {
case err := <-c.conn.NotifyClose(make(chan *amqp.Error)):
if err == nil {
return
}
c.Lock()
// trash the broken publishing channel
<-c.publishChan
t := time.Now().UTC()
pipe := c.pipeline.Load().(*pipeline.Pipeline)
c.eh.Push(events.JobEvent{
Event: events.EventPipeError,
Pipeline: pipe.Name(),
Driver: pipe.Driver(),
Error: err,
Start: time.Now().UTC(),
})
expb := backoff.NewExponentialBackOff()
// set the retry timeout (minutes)
expb.MaxElapsedTime = c.retryTimeout
operation := func() error {
c.log.Warn("rabbitmq reconnecting, caused by", "error", err)
var dialErr error
c.conn, dialErr = amqp.Dial(c.connStr)
if dialErr != nil {
return errors.E(op, dialErr)
}
c.log.Info("rabbitmq dial succeed. trying to redeclare queues and subscribers")
// re-init connection
errInit := c.initRabbitMQ()
if errInit != nil {
c.log.Error("rabbitmq dial", "error", errInit)
return errInit
}
// redeclare consume channel
var errConnCh error
c.consumeChan, errConnCh = c.conn.Channel()
if errConnCh != nil {
return errors.E(op, errConnCh)
}
// redeclare publish channel
pch, errPubCh := c.conn.Channel()
if errPubCh != nil {
return errors.E(op, errPubCh)
}
// start reading messages from the channel
deliv, err := c.consumeChan.Consume(
c.queue,
c.consumeID,
false,
false,
false,
false,
nil,
)
if err != nil {
return errors.E(op, err)
}
// put the fresh publishing channel
c.publishChan <- pch
// restart listener
c.listener(deliv)
c.log.Info("queues and subscribers redeclared successfully")
return nil
}
retryErr := backoff.Retry(operation, expb)
if retryErr != nil {
c.Unlock()
c.log.Error("backoff failed", "error", retryErr)
return
}
c.eh.Push(events.JobEvent{
Event: events.EventPipeActive,
Pipeline: pipe.Name(),
Driver: pipe.Driver(),
Start: t,
Elapsed: time.Since(t),
})
c.Unlock()
case <-c.stopCh:
pch := <-c.publishChan
err := pch.Close()
if err != nil {
c.log.Error("publish channel close", "error", err)
}
if c.consumeChan != nil {
err = c.consumeChan.Close()
if err != nil {
c.log.Error("consume channel close", "error", err)
}
}
err = c.conn.Close()
if err != nil {
c.log.Error("amqp connection close", "error", err)
}
return
}
}
}()
}
|