forked from apache/pulsar-client-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathretry_router.go
139 lines (120 loc) · 3.57 KB
/
retry_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
// 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"
)
const (
DlqTopicSuffix = "-DLQ"
RetryTopicSuffix = "-RETRY"
MaxReconsumeTimes = 16
SysPropertyDelayTime = "DELAY_TIME"
SysPropertyRealTopic = "REAL_TOPIC"
SysPropertyRetryTopic = "RETRY_TOPIC"
SysPropertyReconsumeTimes = "RECONSUMETIMES"
SysPropertyOriginMessageID = "ORIGIN_MESSAGE_IDY_TIME"
)
type RetryMessage struct {
producerMsg ProducerMessage
consumerMsg ConsumerMessage
}
type retryRouter struct {
client Client
producer Producer
policy *DLQPolicy
messageCh chan RetryMessage
closeCh chan interface{}
log log.Logger
}
func newRetryRouter(client Client, policy *DLQPolicy, retryEnabled bool, logger log.Logger) (*retryRouter, error) {
r := &retryRouter{
client: client,
policy: policy,
log: logger,
}
if policy != nil && retryEnabled {
if policy.MaxDeliveries <= 0 {
return nil, errors.New("DLQPolicy.MaxDeliveries needs to be > 0")
}
if policy.RetryLetterTopic == "" {
return nil, errors.New("DLQPolicy.RetryLetterTopic needs to be set to a valid topic name")
}
r.messageCh = make(chan RetryMessage)
r.closeCh = make(chan interface{}, 1)
r.log = logger.SubLogger(log.Fields{"rlq-topic": policy.RetryLetterTopic})
go r.run()
}
return r, nil
}
func (r *retryRouter) Chan() chan RetryMessage {
return r.messageCh
}
func (r *retryRouter) run() {
for {
select {
case rm := <-r.messageCh:
r.log.WithField("msgID", rm.consumerMsg.ID()).Debug("Got message for RLQ")
producer := r.getProducer()
msgID := rm.consumerMsg.ID()
producer.SendAsync(context.Background(), &rm.producerMsg, func(MessageID, *ProducerMessage, error) {
// TODO: if router produce failed, should Nack this message
r.log.WithField("msgID", msgID).Debug("Sent message to RLQ")
rm.consumerMsg.Consumer.AckID(msgID)
})
case <-r.closeCh:
if r.producer != nil {
r.producer.Close()
}
r.log.Debug("Closed RLQ router")
return
}
}
}
func (r *retryRouter) close() {
// Attempt to write on the close channel, without blocking
select {
case r.closeCh <- nil:
default:
}
}
func (r *retryRouter) 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.RetryLetterTopic,
CompressionType: LZ4,
BatchingMaxPublishDelay: 100 * time.Millisecond,
})
if err != nil {
r.log.WithError(err).Error("Failed to create RLQ producer")
time.Sleep(backoff.Next())
continue
} else {
r.producer = producer
return producer
}
}
}