-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathcluster.rb
507 lines (400 loc) · 14.3 KB
/
cluster.rb
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
# frozen_string_literal: true
require "kafka/broker_pool"
require "set"
module Kafka
# A cluster represents the state of a Kafka cluster. It needs to be initialized
# with a non-empty list of seed brokers. The first seed broker that the cluster can connect
# to will be asked for the cluster metadata, which allows the cluster to map topic
# partitions to the current leader for those partitions.
class Cluster
# Initializes a Cluster with a set of seed brokers.
#
# The cluster will try to fetch cluster metadata from one of the brokers.
#
# @param seed_brokers [Array<URI>]
# @param broker_pool [Kafka::BrokerPool]
# @param logger [Logger]
def initialize(seed_brokers:, broker_pool:, logger:)
if seed_brokers.empty?
raise ArgumentError, "At least one seed broker must be configured"
end
@logger = TaggedLogger.new(logger)
@seed_brokers = seed_brokers
@broker_pool = broker_pool
@cluster_info = nil
@stale = true
# This is the set of topics we need metadata for. If empty, metadata for
# all topics will be fetched.
@target_topics = Set.new
end
# Adds a list of topics to the target list. Only the topics on this list will
# be queried for metadata.
#
# @param topics [Array<String>]
# @return [nil]
def add_target_topics(topics)
topics = Set.new(topics)
unless topics.subset?(@target_topics)
new_topics = topics - @target_topics
unless new_topics.empty?
if new_topics.any? { |topic| topic.nil? or topic.empty? }
raise ArgumentError, "Topic must not be nil or empty"
end
@logger.info "New topics added to target list: #{new_topics.to_a.join(', ')}"
@target_topics.merge(new_topics)
refresh_metadata!
end
end
end
def api_info(api_key)
apis.find {|api| api.api_key == api_key }
end
def supports_api?(api_key, version = nil)
info = api_info(api_key)
if info.nil?
return false
elsif version.nil?
return true
else
return info.version_supported?(version)
end
end
def apis
@apis ||=
begin
response = random_broker.api_versions
Protocol.handle_error(response.error_code)
response.apis
end
end
# Clears the list of target topics.
#
# @see #add_target_topics
# @return [nil]
def clear_target_topics
@target_topics.clear
refresh_metadata!
end
def mark_as_stale!
@stale = true
end
def refresh_metadata!
@cluster_info = nil
cluster_info
end
def refresh_metadata_if_necessary!
refresh_metadata! if @stale
end
# Finds the broker acting as the leader of the given topic and partition.
#
# @param topic [String]
# @param partition [Integer]
# @return [Broker] the broker that's currently leader.
def get_leader(topic, partition)
connect_to_broker(get_leader_id(topic, partition))
end
# Finds the broker acting as the coordinator of the given group.
#
# @param group_id: [String]
# @return [Broker] the broker that's currently coordinator.
def get_group_coordinator(group_id:)
@logger.debug "Getting group coordinator for `#{group_id}`"
refresh_metadata_if_necessary!
get_coordinator(Kafka::Protocol::COORDINATOR_TYPE_GROUP, group_id)
end
# Finds the broker acting as the coordinator of the given transaction.
#
# @param transactional_id: [String]
# @return [Broker] the broker that's currently coordinator.
def get_transaction_coordinator(transactional_id:)
@logger.debug "Getting transaction coordinator for `#{transactional_id}`"
refresh_metadata_if_necessary!
if transactional_id.nil?
# Get a random_broker
@logger.debug "Transaction ID is not available. Choose a random broker."
return random_broker
else
get_coordinator(Kafka::Protocol::COORDINATOR_TYPE_TRANSACTION, transactional_id)
end
end
def describe_configs(broker_id, configs = [])
options = {
resources: [[Kafka::Protocol::RESOURCE_TYPE_CLUSTER, broker_id.to_s, configs]]
}
info = cluster_info.brokers.find {|broker| broker.node_id == broker_id }
broker = @broker_pool.connect(info.host, info.port, node_id: info.node_id)
response = broker.describe_configs(**options)
response.resources.each do |resource|
Protocol.handle_error(resource.error_code, resource.error_message)
end
response.resources.first.configs
end
def alter_configs(broker_id, configs = [])
options = {
resources: [[Kafka::Protocol::RESOURCE_TYPE_CLUSTER, broker_id.to_s, configs]]
}
info = cluster_info.brokers.find {|broker| broker.node_id == broker_id }
broker = @broker_pool.connect(info.host, info.port, node_id: info.node_id)
response = broker.alter_configs(**options)
response.resources.each do |resource|
Protocol.handle_error(resource.error_code, resource.error_message)
end
nil
end
def partitions_for(topic)
add_target_topics([topic])
refresh_metadata_if_necessary!
cluster_info.partitions_for(topic)
rescue Kafka::ProtocolError
mark_as_stale!
raise
end
def create_topic(name, num_partitions:, replication_factor:, timeout:, config:)
options = {
topics: {
name => {
num_partitions: num_partitions,
replication_factor: replication_factor,
config: config,
}
},
timeout: timeout,
}
broker = controller_broker
@logger.info "Creating topic `#{name}` using controller broker #{broker}"
response = broker.create_topics(**options)
response.errors.each do |topic, error_code|
Protocol.handle_error(error_code)
end
begin
partitions_for(name).each do |info|
Protocol.handle_error(info.partition_error_code)
end
rescue Kafka::LeaderNotAvailable
@logger.warn "Leader not yet available for `#{name}`, waiting 1s..."
sleep 1
retry
rescue Kafka::UnknownTopicOrPartition
@logger.warn "Topic `#{name}` not yet created, waiting 1s..."
sleep 1
retry
end
@logger.info "Topic `#{name}` was created"
end
def delete_topic(name, timeout:)
options = {
topics: [name],
timeout: timeout,
}
broker = controller_broker
@logger.info "Deleting topic `#{name}` using controller broker #{broker}"
response = broker.delete_topics(**options)
response.errors.each do |topic, error_code|
Protocol.handle_error(error_code)
end
@logger.info "Topic `#{name}` was deleted"
end
def describe_topic(name, configs = [])
options = {
resources: [[Kafka::Protocol::RESOURCE_TYPE_TOPIC, name, configs]]
}
broker = controller_broker
@logger.info "Fetching topic `#{name}`'s configs using controller broker #{broker}"
response = broker.describe_configs(**options)
response.resources.each do |resource|
Protocol.handle_error(resource.error_code, resource.error_message)
end
topic_description = response.resources.first
topic_description.configs.each_with_object({}) do |config, hash|
hash[config.name] = config.value
end
end
def alter_topic(name, configs = {})
options = {
resources: [[Kafka::Protocol::RESOURCE_TYPE_TOPIC, name, configs]]
}
broker = controller_broker
@logger.info "Altering the config for topic `#{name}` using controller broker #{broker}"
response = broker.alter_configs(**options)
response.resources.each do |resource|
Protocol.handle_error(resource.error_code, resource.error_message)
end
nil
end
def describe_group(group_id)
response = get_group_coordinator(group_id: group_id).describe_groups(group_ids: [group_id])
group = response.groups.first
Protocol.handle_error(group.error_code)
group
end
def fetch_group_offsets(group_id)
topics = get_group_coordinator(group_id: group_id)
.fetch_offsets(group_id: group_id, topics: nil)
.topics
topics.each do |_, partitions|
partitions.each do |_, response|
Protocol.handle_error(response.error_code)
end
end
topics
end
def create_partitions_for(name, num_partitions:, timeout:)
options = {
topics: [[name, num_partitions, nil]],
timeout: timeout
}
broker = controller_broker
@logger.info "Creating #{num_partitions} partition(s) for topic `#{name}` using controller broker #{broker}"
response = broker.create_partitions(**options)
response.errors.each do |topic, error_code, error_message|
Protocol.handle_error(error_code, error_message)
end
mark_as_stale!
@logger.info "Topic `#{name}` was updated"
end
def resolve_offsets(topic, partitions, offset)
add_target_topics([topic])
refresh_metadata_if_necessary!
partitions_by_broker = partitions.each_with_object({}) {|partition, hsh|
broker = get_leader(topic, partition)
hsh[broker] ||= []
hsh[broker] << partition
}
if offset == :earliest
offset = -2
elsif offset == :latest
offset = -1
end
offsets = {}
partitions_by_broker.each do |broker, broker_partitions|
response = broker.list_offsets(
topics: {
topic => broker_partitions.map {|partition|
{
partition: partition,
time: offset
}
}
}
)
broker_partitions.each do |partition|
offsets[partition] = response.offset_for(topic, partition)
end
end
offsets
rescue Kafka::ProtocolError
mark_as_stale!
raise
end
def resolve_offset(topic, partition, offset)
resolve_offsets(topic, [partition], offset).fetch(partition)
end
def topics
refresh_metadata_if_necessary!
cluster_info.topics.select do |topic|
topic.topic_error_code == 0
end.map(&:topic_name)
end
# Lists all topics in the cluster.
def list_topics
response = random_broker.fetch_metadata(topics: nil)
response.topics.select do |topic|
topic.topic_error_code == 0
end.map(&:topic_name)
end
def list_groups
refresh_metadata_if_necessary!
cluster_info.brokers.map do |broker|
response = connect_to_broker(broker.node_id).list_groups
Protocol.handle_error(response.error_code)
response.groups.map(&:group_id)
end.flatten.uniq
end
def disconnect
@broker_pool.close
end
def cluster_info
@cluster_info ||= fetch_cluster_info
end
private
def get_leader_id(topic, partition)
cluster_info.find_leader_id(topic, partition)
end
# Fetches the cluster metadata.
#
# This is used to update the partition leadership information, among other things.
# The methods will go through each node listed in `seed_brokers`, connecting to the
# first one that is available. This node will be queried for the cluster metadata.
#
# @raise [ConnectionError] if none of the nodes in `seed_brokers` are available.
# @return [Protocol::MetadataResponse] the cluster metadata.
def fetch_cluster_info
errors = []
@seed_brokers.shuffle.each do |node|
@logger.info "Fetching cluster metadata from #{node}"
begin
broker = @broker_pool.connect(node.hostname, node.port)
cluster_info = broker.fetch_metadata(topics: @target_topics)
if cluster_info.brokers.empty?
@logger.error "No brokers in cluster"
else
@logger.info "Discovered cluster metadata; nodes: #{cluster_info.brokers.join(', ')}"
@stale = false
return cluster_info
end
rescue Error => e
@logger.error "Failed to fetch metadata from #{node}: #{e}"
errors << [node, e]
ensure
broker.disconnect unless broker.nil?
end
end
error_description = errors.map {|node, exception| "- #{node}: #{exception}" }.join("\n")
raise ConnectionError, "Could not connect to any of the seed brokers:\n#{error_description}"
end
def random_broker
refresh_metadata_if_necessary!
node_id = cluster_info.brokers.sample.node_id
connect_to_broker(node_id)
end
def connect_to_broker(broker_id)
info = cluster_info.find_broker(broker_id)
@broker_pool.connect(info.host, info.port, node_id: info.node_id)
end
def controller_broker
connect_to_broker(cluster_info.controller_id)
end
def get_coordinator(coordinator_type, coordinator_key)
cluster_info.brokers.each do |broker_info|
begin
broker = connect_to_broker(broker_info.node_id)
response = broker.find_coordinator(
coordinator_type: coordinator_type,
coordinator_key: coordinator_key
)
Protocol.handle_error(response.error_code, response.error_message)
coordinator_id = response.coordinator_id
@logger.debug "Coordinator for `#{coordinator_key}` is #{coordinator_id}. Connecting..."
# It's possible that a new broker is introduced to the cluster and
# becomes the coordinator before we have a chance to refresh_metadata.
coordinator = begin
connect_to_broker(coordinator_id)
rescue Kafka::NoSuchBroker
@logger.debug "Broker #{coordinator_id} missing from broker cache, refreshing"
refresh_metadata!
connect_to_broker(coordinator_id)
end
@logger.debug "Connected to coordinator: #{coordinator} for `#{coordinator_key}`"
return coordinator
rescue CoordinatorNotAvailable
@logger.debug "Coordinator not available; retrying in 1s"
sleep 1
retry
rescue ConnectionError => e
@logger.error "Failed to get coordinator info from #{broker}: #{e}"
end
end
raise Kafka::Error, "Failed to find coordinator"
end
end
end