"Hello World" for Apache Kafka
This page goes through the basic "Hello World" Kafka functionality (produce and consume) with WarpStream.
Running the WarpStream Agent
warpstream playgroundCreate a Topic
warpstream kcmd --type create-topic --topic helloworld2Add Records To The Topic
warpstream kcmd --type produce --topic helloworld2 --records "world,,world"result: partition:0 offset:0 value:"world"
result: partition:0 offset:1 value:"world" Read Records From The Topic
Last updated
Was this helpful?