Skip to content

Instantly share code, notes, and snippets.

@gom
Created July 18, 2019 01:32
Show Gist options
  • Save gom/1ec9a8eb3f81215f0b1776ed3d4e8401 to your computer and use it in GitHub Desktop.
Save gom/1ec9a8eb3f81215f0b1776ed3d4e8401 to your computer and use it in GitHub Desktop.
require 'rdkafka'
config = {
:"bootstrap.servers" => "localhost:9092"
}
rdkafka = Rdkafka::Config.new(config)
producer = rdkafka.producer
topic = "test.test_foobar"
payload = '{"foo":"bar"}'
producer.produce(topic: topic, payload: payload)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment