Kafka protobuf producer

In an event-driven architecture, requirements for a flexible, reliable schema contract between producer and consumer application is required. Using protocol buffers allows for an extensible mechanism for serializing structured data. You are able to define the contract once and use the generated source code to write and read data using the language of your choice. In this article, I’ll discuss the steps to push a serialized protobuf message into kafka and a way to verify that by reading the message from kafka into a console ...

November 12, 2020 · 3 min · Yamin