Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add client function for fetching topic replica count #822

Merged
merged 3 commits into from
Apr 19, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions lib/kafka/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,15 @@ def partitions_for(topic)
@cluster.partitions_for(topic).count
end

# Counts the number of replicas for a topic's partition
#
# @param topic [String]
# @return [Integer] the number of replica nodes for the topic's partition

def replica_count_for(topic)
@cluster.partitions_for(topic).first.replicas.count
end

# Retrieve the offset of the last message in a partition. If there are no
# messages in the partition -1 is returned.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/kafka/protocol/metadata_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module Protocol
#
class MetadataResponse
class PartitionMetadata
attr_reader :partition_id, :leader
attr_reader :partition_id, :leader, :replicas

attr_reader :partition_error_code

Expand Down
17 changes: 17 additions & 0 deletions spec/functional/client_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,23 @@
expect(kafka.partitions_for(topic)).to be > 0
end

example "fetching the replica count for a topic" do
expect(kafka.replica_count_for(topic)).to eq 1
end

example "fetching the replica count for a topic that doesn't yet exist" do
topic = "unknown-topic-#{SecureRandom.uuid}"

expect { kafka.replica_count_for(topic) }.to raise_exception(Kafka::LeaderNotAvailable)

# Eventually the call should succeed.
expect {
10.times { kafka.replica_count_for(topic) rescue nil }
}.not_to raise_exception

expect(kafka.replica_count_for(topic)).to be > 0
end

example "delivering a message to a topic" do
kafka.deliver_message("yolo", topic: topic, key: "xoxo", partition: 0)

Expand Down