-
Notifications
You must be signed in to change notification settings - Fork 940
Expand file tree
/
Copy pathinput_pubsub.go
More file actions
183 lines (154 loc) · 4.82 KB
/
input_pubsub.go
File metadata and controls
183 lines (154 loc) · 4.82 KB
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
// Copyright 2024 Redpanda Data, Inc.
//
// Licensed 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 redis
import (
"context"
"sync"
"github.com/redis/go-redis/v9"
"github.com/redpanda-data/benthos/v4/public/service"
)
const (
psiFieldChannels = "channels"
psiFieldUsePatterns = "use_patterns"
)
func redisPubSubInputConfig() *service.ConfigSpec {
return service.NewConfigSpec().
Stable().
Summary(`Consume from a Redis publish/subscribe channel using either the SUBSCRIBE or PSUBSCRIBE commands.`).
Description(`
In order to subscribe to channels using the `+"`PSUBSCRIBE`"+` command set the field `+"`use_patterns` to `true`"+`, then you can include glob-style patterns in your channel names. For example:
- `+"`h?llo`"+` subscribes to hello, hallo and hxllo
- `+"`h*llo`"+` subscribes to hllo and heeeello
- `+"`h[ae]llo`"+` subscribes to hello and hallo, but not hillo
Use `+"`\\`"+` to escape special characters if you want to match them verbatim.
== Metadata
This input adds the following metadata fields to each message:
- redis_pubsub_channel
- redis_pubsub_pattern
You can access these metadata fields using xref:configuration:interpolation.adoc#bloblang-queries[function interpolation].`).
Categories("Services").
Fields(clientFields()...).
Fields(
service.NewStringListField(psiFieldChannels).
Description("A list of channels to consume from."),
service.NewBoolField(psiFieldUsePatterns).
Description("Whether to use the PSUBSCRIBE command, allowing for glob-style patterns within target channel names.").
Default(false),
service.NewAutoRetryNacksToggleField(),
)
}
func init() {
service.MustRegisterInput(
"redis_pubsub", redisPubSubInputConfig(),
func(conf *service.ParsedConfig, mgr *service.Resources) (service.Input, error) {
r, err := newRedisPubSubReader(conf, mgr)
if err != nil {
return nil, err
}
return service.AutoRetryNacksToggled(conf, r)
})
}
type redisPubSubReader struct {
client redis.UniversalClient
pubsub *redis.PubSub
cMut sync.Mutex
channels []string
usePatterns bool
log *service.Logger
}
func newRedisPubSubReader(conf *service.ParsedConfig, mgr *service.Resources) (*redisPubSubReader, error) {
client, err := getClient(conf)
if err != nil {
return nil, err
}
r := &redisPubSubReader{
client: client,
log: mgr.Logger(),
}
if r.channels, err = conf.FieldStringList(psiFieldChannels); err != nil {
return nil, err
}
if r.usePatterns, err = conf.FieldBool(psiFieldUsePatterns); err != nil {
return nil, err
}
return r, nil
}
// ConnectionTest attempts to test the connection configuration of this input
// without actually consuming data. The connection, if successful, is then
// closed.
func (r *redisPubSubReader) ConnectionTest(ctx context.Context) service.ConnectionTestResults {
_, err := r.client.Ping(ctx).Result()
if err != nil {
return service.ConnectionTestFailed(err).AsList()
}
return service.ConnectionTestSucceeded().AsList()
}
func (r *redisPubSubReader) Connect(ctx context.Context) error {
r.cMut.Lock()
defer r.cMut.Unlock()
if r.pubsub != nil {
return nil
}
if _, err := r.client.Ping(ctx).Result(); err != nil {
return err
}
if r.usePatterns {
r.pubsub = r.client.PSubscribe(ctx, r.channels...)
} else {
r.pubsub = r.client.Subscribe(ctx, r.channels...)
}
return nil
}
func (r *redisPubSubReader) Read(ctx context.Context) (*service.Message, service.AckFunc, error) {
var pubsub *redis.PubSub
r.cMut.Lock()
pubsub = r.pubsub
r.cMut.Unlock()
if pubsub == nil {
return nil, nil, service.ErrNotConnected
}
select {
case rMsg, open := <-pubsub.Channel(redis.WithChannelSize(2000)):
if !open {
_ = r.disconnect()
return nil, nil, service.ErrEndOfInput
}
message := service.NewMessage([]byte(rMsg.Payload))
message.MetaSetMut("redis_pubsub_channel", rMsg.Channel)
message.MetaSetMut("redis_pubsub_pattern", rMsg.Pattern)
return message, func(context.Context, error) error {
return nil
}, nil
case <-ctx.Done():
return nil, nil, ctx.Err()
}
}
func (r *redisPubSubReader) disconnect() error {
r.cMut.Lock()
defer r.cMut.Unlock()
var err error
if r.pubsub != nil {
err = r.pubsub.Close()
r.pubsub = nil
}
if r.client != nil {
err = r.client.Close()
r.client = nil
}
return err
}
func (r *redisPubSubReader) Close(context.Context) (err error) {
err = r.disconnect()
return
}