forked from apache/pulsar-client-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsumer_regex.go
432 lines (362 loc) · 9.4 KB
/
consumer_regex.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
// 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"
"fmt"
"regexp"
"strings"
"sync"
"time"
pkgerrors "github.com/pkg/errors"
"github.com/apache/pulsar-client-go/pulsar/internal"
"github.com/apache/pulsar-client-go/pulsar/log"
)
const (
defaultAutoDiscoveryDuration = 1 * time.Minute
)
type regexConsumer struct {
client *client
dlq *dlqRouter
rlq *retryRouter
options ConsumerOptions
messageCh chan ConsumerMessage
namespace string
pattern *regexp.Regexp
consumersLock sync.Mutex
consumers map[string]Consumer
subscribeCh chan []string
unsubscribeCh chan []string
closeOnce sync.Once
closeCh chan struct{}
ticker *time.Ticker
log log.Logger
consumerName string
}
func newRegexConsumer(c *client, opts ConsumerOptions, tn *internal.TopicName, pattern *regexp.Regexp,
msgCh chan ConsumerMessage, dlq *dlqRouter, rlq *retryRouter) (Consumer, error) {
rc := ®exConsumer{
client: c,
dlq: dlq,
rlq: rlq,
options: opts,
messageCh: msgCh,
namespace: tn.Namespace,
pattern: pattern,
consumers: make(map[string]Consumer),
subscribeCh: make(chan []string, 1),
unsubscribeCh: make(chan []string, 1),
closeCh: make(chan struct{}),
log: c.log.SubLogger(log.Fields{"topic": tn.Name}),
consumerName: opts.Name,
}
topics, err := rc.topics()
if err != nil {
return nil, err
}
var errs error
for ce := range subscriber(c, topics, opts, msgCh, dlq, rlq) {
if ce.err != nil {
errs = pkgerrors.Wrapf(ce.err, "unable to subscribe to topic=%s", ce.topic)
} else {
rc.consumers[ce.topic] = ce.consumer
}
}
if errs != nil {
for _, c := range rc.consumers {
c.Close()
}
return nil, errs
}
// set up timer
duration := opts.AutoDiscoveryPeriod
if duration <= 0 {
duration = defaultAutoDiscoveryDuration
}
rc.ticker = time.NewTicker(duration)
go rc.monitor()
return rc, nil
}
func (c *regexConsumer) Subscription() string {
return c.options.SubscriptionName
}
func (c *regexConsumer) Unsubscribe() error {
var errs error
c.consumersLock.Lock()
defer c.consumersLock.Unlock()
for topic, consumer := range c.consumers {
if err := consumer.Unsubscribe(); err != nil {
msg := fmt.Sprintf("unable to unsubscribe from topic=%s subscription=%s",
topic, c.Subscription())
errs = pkgerrors.Wrap(err, msg)
}
}
return errs
}
func (c *regexConsumer) Receive(ctx context.Context) (message Message, err error) {
for {
select {
case <-c.closeCh:
return nil, ErrConsumerClosed
case cm, ok := <-c.messageCh:
if !ok {
return nil, ErrConsumerClosed
}
return cm.Message, nil
case <-ctx.Done():
return nil, ctx.Err()
}
}
}
// Chan
func (c *regexConsumer) Chan() <-chan ConsumerMessage {
return c.messageCh
}
// Ack the consumption of a single message
func (c *regexConsumer) Ack(msg Message) {
c.AckID(msg.ID())
}
func (c *regexConsumer) ReconsumeLater(msg Message, delay time.Duration) {
c.log.Warnf("regexp consumer not support ReconsumeLater yet.")
}
// Ack the consumption of a single message, identified by its MessageID
func (c *regexConsumer) AckID(msgID MessageID) {
mid, ok := toTrackingMessageID(msgID)
if !ok {
c.log.Warnf("invalid message id type %T", msgID)
return
}
if mid.consumer == nil {
c.log.Warnf("unable to ack messageID=%+v can not determine topic", msgID)
return
}
mid.Ack()
}
func (c *regexConsumer) Nack(msg Message) {
c.NackID(msg.ID())
}
func (c *regexConsumer) NackID(msgID MessageID) {
mid, ok := toTrackingMessageID(msgID)
if !ok {
c.log.Warnf("invalid message id type %T", msgID)
return
}
if mid.consumer == nil {
c.log.Warnf("unable to nack messageID=%+v can not determine topic", msgID)
return
}
mid.Nack()
}
func (c *regexConsumer) Close() {
c.closeOnce.Do(func() {
c.ticker.Stop()
close(c.closeCh)
var wg sync.WaitGroup
c.consumersLock.Lock()
defer c.consumersLock.Unlock()
wg.Add(len(c.consumers))
for _, con := range c.consumers {
go func(consumer Consumer) {
defer wg.Done()
consumer.Close()
}(con)
}
wg.Wait()
c.dlq.close()
c.rlq.close()
})
}
func (c *regexConsumer) Seek(msgID MessageID) error {
return errors.New("seek command not allowed for regex consumer")
}
func (c *regexConsumer) SeekByTime(time time.Time) error {
return errors.New("seek command not allowed for regex consumer")
}
// Name returns the name of consumer.
func (c *regexConsumer) Name() string {
return c.consumerName
}
func (c *regexConsumer) closed() bool {
select {
case <-c.closeCh:
return true
default:
return false
}
}
func (c *regexConsumer) monitor() {
for {
select {
case <-c.closeCh:
return
case <-c.ticker.C:
c.log.Debug("Auto discovering topics")
if !c.closed() {
c.discover()
}
case topics := <-c.subscribeCh:
if len(topics) > 0 && !c.closed() {
c.subscribe(topics, c.dlq, c.rlq)
}
case topics := <-c.unsubscribeCh:
if len(topics) > 0 && !c.closed() {
c.unsubscribe(topics)
}
}
}
}
func (c *regexConsumer) discover() {
topics, err := c.topics()
if err != nil {
c.log.WithError(err).Errorf("Failed to discover topics")
return
}
known := c.knownTopics()
newTopics := topicsDiff(topics, known)
staleTopics := topicsDiff(known, topics)
c.log.
WithFields(log.Fields{
"new_topics": newTopics,
"old_topics": staleTopics,
}).
Debug("discover topics")
c.unsubscribeCh <- staleTopics
c.subscribeCh <- newTopics
}
func (c *regexConsumer) knownTopics() []string {
c.consumersLock.Lock()
defer c.consumersLock.Unlock()
topics := make([]string, len(c.consumers))
n := 0
for t := range c.consumers {
topics[n] = t
n++
}
return topics
}
func (c *regexConsumer) subscribe(topics []string, dlq *dlqRouter, rlq *retryRouter) {
c.log.WithField("topics", topics).Debug("subscribe")
consumers := make(map[string]Consumer, len(topics))
for ce := range subscriber(c.client, topics, c.options, c.messageCh, dlq, rlq) {
if ce.err != nil {
c.log.Warnf("Failed to subscribe to topic=%s", ce.topic)
} else {
consumers[ce.topic] = ce.consumer
}
}
c.consumersLock.Lock()
defer c.consumersLock.Unlock()
for t, consumer := range consumers {
c.consumers[t] = consumer
}
}
func (c *regexConsumer) unsubscribe(topics []string) {
c.log.WithField("topics", topics).Debug("unsubscribe")
consumers := make(map[string]Consumer, len(topics))
c.consumersLock.Lock()
for _, t := range topics {
if consumer, ok := c.consumers[t]; ok {
consumers[t] = consumer
delete(c.consumers, t)
}
}
c.consumersLock.Unlock()
for t, consumer := range consumers {
c.log.Debugf("unsubscribe from topic=%s subscription=%s", t, c.options.SubscriptionName)
if err := consumer.Unsubscribe(); err != nil {
c.log.Warnf("unable to unsubscribe from topic=%s subscription=%s",
t, c.options.SubscriptionName)
}
consumer.Close()
}
}
func (c *regexConsumer) topics() ([]string, error) {
topics, err := c.client.namespaceTopics(c.namespace)
if err != nil {
return nil, err
}
filtered := filterTopics(topics, c.pattern)
return filtered, nil
}
type consumerError struct {
err error
topic string
consumer Consumer
}
func subscriber(c *client, topics []string, opts ConsumerOptions, ch chan ConsumerMessage,
dlq *dlqRouter, rlq *retryRouter) <-chan consumerError {
consumerErrorCh := make(chan consumerError, len(topics))
var wg sync.WaitGroup
wg.Add(len(topics))
go func() {
wg.Wait()
close(consumerErrorCh)
}()
for _, t := range topics {
go func(topic string) {
defer wg.Done()
c, err := newInternalConsumer(c, opts, topic, ch, dlq, rlq, true)
consumerErrorCh <- consumerError{
err: err,
topic: topic,
consumer: c,
}
}(t)
}
return consumerErrorCh
}
func filterTopics(topics []string, regex *regexp.Regexp) []string {
matches := make(map[string]bool)
matching := make([]string, 0)
for _, t := range topics {
tn, _ := internal.ParseTopicName(t)
topic := internal.TopicNameWithoutPartitionPart(tn)
if _, ok := matches[topic]; ok {
continue
}
if regex.MatchString(topic) {
matches[topic] = true
matching = append(matching, topic)
}
}
return matching
}
// topicDiff returns all topics in topics1 that are not in topics2
func topicsDiff(topics1 []string, topics2 []string) []string {
if len(topics2) == 0 {
return topics1
}
diff := make([]string, 0)
topics := make(map[string]bool, len(topics2))
for _, t := range topics2 {
topics[t] = true
}
for _, t := range topics1 {
if !topics[t] {
diff = append(diff, t)
}
}
return diff
}
func extractTopicPattern(tn *internal.TopicName) (*regexp.Regexp, error) {
idx := strings.Index(tn.Name, tn.Namespace)
if idx > 0 {
return regexp.Compile(tn.Name[idx:])
}
return regexp.Compile(tn.Name)
}