Sha256: 0223310c8440078bb6848dd358a92b1c927457881c77aae3ada88340247c2dc3

Contents?: true

Size: 822 Bytes

Versions: 8

Compression:

Stored size: 822 Bytes

Contents

# Consumes lines from a Kafka partition and writes them to STDOUT.
#
# You need to define the environment variable KAFKA_BROKERS for this
# to work, e.g.
#
#     export KAFKA_BROKERS=localhost:9092
#

$LOAD_PATH.unshift(File.expand_path("../../lib", __FILE__))

require "kafka"

# We don't want log output to clutter the console. Replace `StringIO.new`
# with e.g. `$stderr` if you want to see what's happening under the hood.
logger = Logger.new(StringIO.new)

brokers = ENV.fetch("KAFKA_BROKERS").split(",")

# Make sure to create this topic in your Kafka cluster or configure the
# cluster to auto-create topics.
topic = "text"

kafka = Kafka.new(
  seed_brokers: brokers,
  client_id: "simple-consumer",
  socket_timeout: 20,
  logger: logger,
)

kafka.each_message(topic: topic) do |message|
  puts message.value
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ruby-kafka-0.6.0.beta4 examples/simple-consumer.rb
ruby-kafka-0.6.0.beta3 examples/simple-consumer.rb
ruby-kafka-0.6.0.beta2 examples/simple-consumer.rb
ruby-kafka-0.6.0.beta1 examples/simple-consumer.rb
ruby-kafka-0.5.5 examples/simple-consumer.rb
ruby-kafka-0.5.4 examples/simple-consumer.rb
ruby-kafka-0.5.4.beta1 examples/simple-consumer.rb
ruby-kafka-0.5.3 examples/simple-consumer.rb