forked from apache/pulsar-client-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdlq_router.go
155 lines (134 loc) · 4.26 KB
/
dlq_router.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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package pulsar
import (
"context"
"errors"
"time"
"github.com/apache/pulsar-client-go/pulsar/internal"
"github.com/apache/pulsar-client-go/pulsar/log"
)
type dlqRouter struct {
client Client
producer Producer
policy *DLQPolicy
messageCh chan ConsumerMessage
closeCh chan interface{}
log log.Logger
}
func newDlqRouter(client Client, policy *DLQPolicy, logger log.Logger) (*dlqRouter, error) {
r := &dlqRouter{
client: client,
policy: policy,
log: logger,
}
if policy != nil {
if policy.MaxDeliveries <= 0 {
return nil, errors.New("DLQPolicy.MaxDeliveries needs to be > 0")
}
if policy.DeadLetterTopic == "" {
return nil, errors.New("DLQPolicy.Topic needs to be set to a valid topic name")
}
r.messageCh = make(chan ConsumerMessage)
r.closeCh = make(chan interface{}, 1)
r.log = logger.SubLogger(log.Fields{"dlq-topic": policy.DeadLetterTopic})
go r.run()
}
return r, nil
}
func (r *dlqRouter) shouldSendToDlq(cm *ConsumerMessage) bool {
if r.policy == nil {
return false
}
msg := cm.Message.(*message)
r.log.WithField("count", msg.redeliveryCount).
WithField("max", r.policy.MaxDeliveries).
WithField("msgId", msg.msgID).
Debug("Should route to DLQ?")
// We use >= here because we're comparing the number of re-deliveries with
// the number of deliveries. So:
// * the user specifies that wants to process a message up to 10 times.
// * the first time, the redeliveryCount == 0, then 1 and so on
// * when we receive the message and redeliveryCount == 10, it means
// that the application has already got (and Nack()) the message 10
// times, so this time we should just go to DLQ.
return msg.redeliveryCount >= r.policy.MaxDeliveries
}
func (r *dlqRouter) Chan() chan ConsumerMessage {
return r.messageCh
}
func (r *dlqRouter) run() {
for {
select {
case cm := <-r.messageCh:
r.log.WithField("msgID", cm.ID()).Debug("Got message for DLQ")
producer := r.getProducer()
msg := cm.Message.(*message)
msgID := msg.ID()
producer.SendAsync(context.Background(), &ProducerMessage{
Payload: msg.Payload(),
Key: msg.Key(),
OrderingKey: msg.OrderingKey(),
Properties: msg.Properties(),
EventTime: msg.EventTime(),
ReplicationClusters: msg.replicationClusters,
}, func(MessageID, *ProducerMessage, error) {
r.log.WithField("msgID", msgID).Debug("Sent message to DLQ")
// The Producer ack might be coming from the connection go-routine that
// is also used by the consumer. In that case we would get a dead-lock
// if we'd try to ack.
go cm.Consumer.AckID(msgID)
})
case <-r.closeCh:
if r.producer != nil {
r.producer.Close()
}
r.log.Debug("Closed DLQ router")
return
}
}
}
func (r *dlqRouter) close() {
// Attempt to write on the close channel, without blocking
select {
case r.closeCh <- nil:
default:
}
}
func (r *dlqRouter) getProducer() Producer {
if r.producer != nil {
// Producer was already initialized
return r.producer
}
// Retry to create producer indefinitely
backoff := &internal.Backoff{}
for {
producer, err := r.client.CreateProducer(ProducerOptions{
Topic: r.policy.DeadLetterTopic,
CompressionType: LZ4,
BatchingMaxPublishDelay: 100 * time.Millisecond,
})
if err != nil {
r.log.WithError(err).Error("Failed to create DLQ producer")
time.Sleep(backoff.Next())
continue
} else {
r.producer = producer
return producer
}
}
}