-
Notifications
You must be signed in to change notification settings - Fork 344
/
reader_impl.go
241 lines (207 loc) · 6.62 KB
/
reader_impl.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
// 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"
"fmt"
"sync"
"time"
"github.com/pkg/errors"
"github.com/apache/pulsar-client-go/pulsar/crypto"
"github.com/apache/pulsar-client-go/pulsar/internal"
"github.com/apache/pulsar-client-go/pulsar/log"
)
const (
defaultReceiverQueueSize = 1000
)
type reader struct {
sync.Mutex
client *client
messageCh chan ConsumerMessage
log log.Logger
metrics *internal.LeveledMetrics
c *consumer
}
func newReader(client *client, options ReaderOptions) (Reader, error) {
if options.Topic == "" {
return nil, newError(InvalidConfiguration, "Topic is required")
}
if options.StartMessageID == nil {
return nil, newError(InvalidConfiguration, "StartMessageID is required")
}
var startMessageID *trackingMessageID
if !checkMessageIDType(options.StartMessageID) {
// a custom type satisfying MessageID may not be a messageID or trackingMessageID
// so re-create messageID using its data
deserMsgID, err := deserializeMessageID(options.StartMessageID.Serialize())
if err != nil {
return nil, err
}
// de-serialized MessageID is a messageID
startMessageID = toTrackingMessageID(deserMsgID)
} else {
startMessageID = toTrackingMessageID(options.StartMessageID)
}
subscriptionName := options.SubscriptionName
if subscriptionName == "" {
subscriptionName = options.SubscriptionRolePrefix
if subscriptionName == "" {
subscriptionName = "reader"
}
subscriptionName += "-" + generateRandomName()
}
receiverQueueSize := options.ReceiverQueueSize
if receiverQueueSize <= 0 {
receiverQueueSize = defaultReceiverQueueSize
}
// decryption is enabled, use default message crypto if not provided
if options.Decryption != nil && options.Decryption.MessageCrypto == nil {
messageCrypto, err := crypto.NewDefaultMessageCrypto("decrypt",
false,
client.log.SubLogger(log.Fields{"topic": options.Topic}))
if err != nil {
return nil, err
}
options.Decryption.MessageCrypto = messageCrypto
}
if options.MaxPendingChunkedMessage == 0 {
options.MaxPendingChunkedMessage = 100
}
if options.ExpireTimeOfIncompleteChunk == 0 {
options.ExpireTimeOfIncompleteChunk = time.Minute
}
consumerOptions := &ConsumerOptions{
Topic: options.Topic,
Name: options.Name,
SubscriptionName: subscriptionName,
Type: Exclusive,
ReceiverQueueSize: receiverQueueSize,
SubscriptionMode: NonDurable,
ReadCompacted: options.ReadCompacted,
Properties: options.Properties,
NackRedeliveryDelay: defaultNackRedeliveryDelay,
ReplicateSubscriptionState: false,
Decryption: options.Decryption,
Schema: options.Schema,
BackOffPolicyFunc: options.BackoffPolicyFunc,
MaxPendingChunkedMessage: options.MaxPendingChunkedMessage,
ExpireTimeOfIncompleteChunk: options.ExpireTimeOfIncompleteChunk,
AutoAckIncompleteChunk: options.AutoAckIncompleteChunk,
startMessageID: startMessageID,
StartMessageIDInclusive: options.StartMessageIDInclusive,
}
reader := &reader{
client: client,
messageCh: make(chan ConsumerMessage),
log: client.log.SubLogger(log.Fields{"topic": options.Topic}),
metrics: client.metrics.GetLeveledMetrics(options.Topic),
}
// Provide dummy dlq router with not dlq policy
dlq, err := newDlqRouter(client, nil, options.Topic, options.SubscriptionName, options.Name,
options.BackoffPolicyFunc, client.log)
if err != nil {
return nil, err
}
// Provide dummy rlq router with not dlq policy
rlq, err := newRetryRouter(client, nil, false, options.BackoffPolicyFunc, client.log)
if err != nil {
return nil, err
}
c, err := newInternalConsumer(client, *consumerOptions, options.Topic, reader.messageCh, dlq, rlq, false)
if err != nil {
close(reader.messageCh)
return nil, err
}
cs, ok := c.(*consumer)
if !ok {
return nil, errors.New("invalid consumer type")
}
reader.c = cs
reader.metrics.ReadersOpened.Inc()
return reader, nil
}
func (r *reader) Topic() string {
return r.c.topic
}
func (r *reader) Next(ctx context.Context) (Message, error) {
for {
select {
case cm, ok := <-r.messageCh:
if !ok {
return nil, newError(ConsumerClosed, "consumer closed")
}
// Acknowledge message immediately because the reader is based on non-durable subscription. When it reconnects,
// it will specify the subscription position anyway
msgID := cm.Message.ID()
err := r.c.setLastDequeuedMsg(msgID)
if err != nil {
return nil, err
}
err = r.c.AckID(msgID)
if err != nil {
return nil, err
}
return cm.Message, nil
case <-r.c.closeCh:
return nil, newError(ConsumerClosed, "consumer closed")
case <-ctx.Done():
return nil, ctx.Err()
}
}
}
func (r *reader) HasNext() bool {
return r.c.hasNext()
}
func (r *reader) Close() {
r.c.Close()
r.client.handlers.Del(r)
r.metrics.ReadersClosed.Inc()
}
func (r *reader) messageID(msgID MessageID) *trackingMessageID {
mid := toTrackingMessageID(msgID)
partition := int(mid.partitionIdx)
// did we receive a valid partition index?
if partition < 0 {
r.log.Warnf("invalid partition index %d expected", partition)
return nil
}
return mid
}
func (r *reader) Seek(msgID MessageID) error {
r.Lock()
defer r.Unlock()
if !checkMessageIDType(msgID) {
r.log.Warnf("invalid message id type %T", msgID)
return fmt.Errorf("invalid message id type %T", msgID)
}
mid := r.messageID(msgID)
if mid == nil {
return nil
}
return r.c.Seek(mid)
}
func (r *reader) SeekByTime(time time.Time) error {
r.Lock()
defer r.Unlock()
return r.c.SeekByTime(time)
}
func (r *reader) GetLastMessageID() (MessageID, error) {
if len(r.c.consumers) > 1 {
return nil, fmt.Errorf("GetLastMessageID is not supported for multi-topics reader")
}
return r.c.consumers[0].getLastMessageID()
}