Created
July 18, 2019 01:32
-
-
Save gom/1ec9a8eb3f81215f0b1776ed3d4e8401 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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