forked from premendrasingh/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
broker.go
479 lines (410 loc) · 10.4 KB
/
broker.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package kafka
import (
"bytes"
"crypto/tls"
"fmt"
"io"
"net"
"os"
"strings"
"time"
"github.com/Shopify/sarama"
"github.com/elastic/beats/libbeat/common"
)
// Broker provides functionality for communicating with a single kafka broker
type Broker struct {
broker *sarama.Broker
cfg *sarama.Config
advertisedAddr string
id int32
matchID bool
}
// BrokerSettings defines common configurations used when connecting to a broker
type BrokerSettings struct {
MatchID bool
DialTimeout, ReadTimeout time.Duration
ClientID string
Retries int
Backoff time.Duration
TLS *tls.Config
Username, Password string
Version Version
}
type GroupDescription struct {
Members map[string]MemberDescription
}
type MemberDescription struct {
Err error
ClientID string
ClientHost string
Topics map[string][]int32
}
const noID = -1
// NewBroker creates a new unconnected kafka Broker connection instance.
func NewBroker(host string, settings BrokerSettings) *Broker {
cfg := sarama.NewConfig()
cfg.Net.DialTimeout = settings.DialTimeout
cfg.Net.ReadTimeout = settings.ReadTimeout
cfg.ClientID = settings.ClientID
cfg.Metadata.Retry.Max = settings.Retries
cfg.Metadata.Retry.Backoff = settings.Backoff
if tls := settings.TLS; tls != nil {
cfg.Net.TLS.Enable = true
cfg.Net.TLS.Config = tls
}
if user := settings.Username; user != "" {
cfg.Net.SASL.Enable = true
cfg.Net.SASL.User = user
cfg.Net.SASL.Password = settings.Password
}
cfg.Version = settings.Version.get()
return &Broker{
broker: sarama.NewBroker(host),
cfg: cfg,
id: noID,
matchID: settings.MatchID,
}
}
// Close the broker connection
func (b *Broker) Close() error {
closeBroker(b.broker)
return nil
}
// Connect connects the broker to the configured host
func (b *Broker) Connect() error {
if err := b.broker.Open(b.cfg); err != nil {
return err
}
if b.id != noID || !b.matchID {
return nil
}
// current broker is bootstrap only. Get metadata to find id:
meta, err := queryMetadataWithRetry(b.broker, b.cfg, nil)
if err != nil {
closeBroker(b.broker)
return err
}
other := findMatchingBroker(brokerAddress(b.broker), meta.Brokers)
if other == nil { // no broker found
closeBroker(b.broker)
return fmt.Errorf("No advertised broker with address %v found", b.Addr())
}
debugf("found matching broker %v with id %v", other.Addr(), other.ID())
b.id = other.ID()
b.advertisedAddr = other.Addr()
return nil
}
// Addr returns the configured broker endpoint.
func (b *Broker) Addr() string {
return b.broker.Addr()
}
// AdvertisedAddr returns the advertised broker address in case of
// matching broker has been found.
func (b *Broker) AdvertisedAddr() string {
return b.advertisedAddr
}
// GetMetadata fetches most recent cluster metadata from the broker.
func (b *Broker) GetMetadata(topics ...string) (*sarama.MetadataResponse, error) {
return queryMetadataWithRetry(b.broker, b.cfg, topics)
}
// GetTopicsMetadata fetches most recent topics/partition metadata from the broker.
func (b *Broker) GetTopicsMetadata(topics ...string) ([]*sarama.TopicMetadata, error) {
r, err := b.GetMetadata(topics...)
if err != nil {
return nil, err
}
return r.Topics, nil
}
// PartitionOffset fetches the available offset from a partition.
func (b *Broker) PartitionOffset(
replicaID int32,
topic string,
partition int32,
time int64,
) (int64, error) {
req := &sarama.OffsetRequest{}
if replicaID != noID {
req.SetReplicaID(replicaID)
}
req.AddBlock(topic, partition, time, 1)
resp, err := b.broker.GetAvailableOffsets(req)
if err != nil {
return -1, err
}
block := resp.GetBlock(topic, partition)
if len(block.Offsets) == 0 {
return -1, nil
}
return block.Offsets[0], nil
}
// ListGroups lists all groups managed by the broker. Other consumer
// groups might be managed by other brokers.
func (b *Broker) ListGroups() ([]string, error) {
resp, err := b.broker.ListGroups(&sarama.ListGroupsRequest{})
if err != nil {
return nil, err
}
if resp.Err != sarama.ErrNoError {
return nil, resp.Err
}
if len(resp.Groups) == 0 {
return nil, nil
}
groups := make([]string, 0, len(resp.Groups))
for name := range resp.Groups {
groups = append(groups, name)
}
return groups, nil
}
// DescribeGroups fetches group details from broker.
func (b *Broker) DescribeGroups(
queryGroups []string,
) (map[string]GroupDescription, error) {
requ := &sarama.DescribeGroupsRequest{Groups: queryGroups}
resp, err := b.broker.DescribeGroups(requ)
if err != nil {
return nil, err
}
if len(resp.Groups) == 0 {
return nil, nil
}
groups := map[string]GroupDescription{}
for _, descr := range resp.Groups {
if len(descr.Members) == 0 {
groups[descr.GroupId] = GroupDescription{}
continue
}
members := map[string]MemberDescription{}
for memberID, memberDescr := range descr.Members {
assignment, err := memberDescr.GetMemberAssignment()
if err != nil {
members[memberID] = MemberDescription{
ClientID: memberDescr.ClientId,
ClientHost: memberDescr.ClientHost,
Err: err,
}
continue
}
members[memberID] = MemberDescription{
ClientID: memberDescr.ClientId,
ClientHost: memberDescr.ClientHost,
Topics: assignment.Topics,
}
}
groups[descr.GroupId] = GroupDescription{Members: members}
}
return groups, nil
}
// FetchGroupOffsets fetches the consume offset of group.
// The partitions is a MAP mapping from topic name to partitionid array.
func (b *Broker) FetchGroupOffsets(group string, partitions map[string][]int32) (*sarama.OffsetFetchResponse, error) {
requ := &sarama.OffsetFetchRequest{
ConsumerGroup: group,
Version: 1,
}
for topic, partition := range partitions {
for _, partitionID := range partition {
requ.AddPartition(topic, partitionID)
}
}
return b.broker.FetchOffset(requ)
}
// ID returns the broker or -1 if the broker id is unknown.
func (b *Broker) ID() int32 {
if b.id == noID {
return b.broker.ID()
}
return b.id
}
func queryMetadataWithRetry(
b *sarama.Broker,
cfg *sarama.Config,
topics []string,
) (r *sarama.MetadataResponse, err error) {
err = withRetry(b, cfg, func() (e error) {
requ := &sarama.MetadataRequest{Topics: topics}
r, e = b.GetMetadata(requ)
return
})
return
}
func closeBroker(b *sarama.Broker) {
if ok, _ := b.Connected(); ok {
b.Close()
}
}
func withRetry(
b *sarama.Broker,
cfg *sarama.Config,
f func() error,
) error {
var err error
for max := 0; max < cfg.Metadata.Retry.Max; max++ {
if ok, _ := b.Connected(); !ok {
if err = b.Open(cfg); err == nil {
err = f()
}
} else {
err = f()
}
if err == nil {
return nil
}
retry, reconnect := checkRetryQuery(err)
if !retry {
return err
}
time.Sleep(cfg.Metadata.Retry.Backoff)
if reconnect {
closeBroker(b)
}
}
return err
}
func checkRetryQuery(err error) (retry, reconnect bool) {
if err == nil {
return false, false
}
if err == io.EOF {
return true, true
}
k, ok := err.(sarama.KError)
if !ok {
return false, false
}
switch k {
case sarama.ErrLeaderNotAvailable, sarama.ErrReplicaNotAvailable,
sarama.ErrOffsetsLoadInProgress, sarama.ErrRebalanceInProgress:
return true, false
case sarama.ErrRequestTimedOut, sarama.ErrBrokerNotAvailable,
sarama.ErrNetworkException:
return true, true
}
return false, false
}
func findMatchingBroker(
addr string,
brokers []*sarama.Broker,
) *sarama.Broker {
lst := brokerAddresses(brokers)
if idx, found := findMatchingAddress(addr, lst); found {
return brokers[idx]
}
return nil
}
func findMatchingAddress(
addr string,
brokers []string,
) (int, bool) {
debugf("Try to match broker to: %v", addr)
// compare connection address to list of broker addresses
if i, found := indexOf(addr, brokers); found {
return i, true
}
// get connection 'port'
_, port, err := net.SplitHostPort(addr)
if err != nil || port == "" {
port = "9092"
}
// lookup local machines ips for comparing with broker addresses
localIPs, err := common.LocalIPAddrs()
if err != nil || len(localIPs) == 0 {
return -1, false
}
debugf("local machine ips: %v", localIPs)
// try to find broker by comparing the fqdn for each known ip to list of
// brokers
localHosts := lookupHosts(localIPs)
debugf("local machine addresses: %v", localHosts)
for _, host := range localHosts {
debugf("try to match with fqdn: %v (%v)", host, port)
if i, found := indexOf(net.JoinHostPort(host, port), brokers); found {
return i, true
}
}
// try to find broker id by comparing the machines local hostname to
// broker hostnames in metadata
if host, err := os.Hostname(); err == nil {
debugf("try to match with hostname only: %v (%v)", host, port)
tmp := net.JoinHostPort(strings.ToLower(host), port)
if i, found := indexOf(tmp, brokers); found {
return i, true
}
}
// lookup ips for all brokers
debugf("match by ips")
for i, b := range brokers {
debugf("test broker address: %v", b)
bh, bp, err := net.SplitHostPort(b)
if err != nil {
continue
}
// port numbers do not match
if bp != port {
continue
}
// lookup all ips for brokers host:
ips, err := net.LookupIP(bh)
debugf("broker %v ips: %v, %v", bh, ips, err)
if err != nil {
continue
}
debugf("broker (%v) ips: %v", bh, ips)
// check if ip is known
if anyIPsMatch(ips, localIPs) {
return i, true
}
}
return -1, false
}
func lookupHosts(ips []net.IP) []string {
set := map[string]struct{}{}
for _, ip := range ips {
txt, err := ip.MarshalText()
if err != nil {
continue
}
hosts, err := net.LookupAddr(string(txt))
debugf("lookup %v => %v, %v", string(txt), hosts, err)
if err != nil {
continue
}
for _, host := range hosts {
h := strings.ToLower(strings.TrimSuffix(host, "."))
set[h] = struct{}{}
}
}
hosts := make([]string, 0, len(set))
for host := range set {
hosts = append(hosts, host)
}
return hosts
}
func anyIPsMatch(as, bs []net.IP) bool {
for _, a := range as {
for _, b := range bs {
if bytes.Equal(a, b) {
return true
}
}
}
return false
}
func brokerAddresses(brokers []*sarama.Broker) []string {
addresses := make([]string, len(brokers))
for i, b := range brokers {
addresses[i] = brokerAddress(b)
}
return addresses
}
func brokerAddress(b *sarama.Broker) string {
return strings.ToLower(b.Addr())
}
func indexOf(s string, lst []string) (int, bool) {
for i, v := range lst {
if s == v {
return i, true
}
}
return -1, false
}