0
votes

I'm seeking for proper tutorial/guide for java kafka-stream with schema-registry. I have google and could't find proper tutorial. I really appriciate if anybody can help me to find out atleast proper tutorial

I could find kafka stream tutorial by googling.But i'm looking for kafka stream with schemaregistry

1
"Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it."Maxime Launois
@Damitha - Questions about books / tools etc will be taken out from stackoverflow. I think you can ask those in some forums.smilyface
Feel free to accept an answer using the checkmark next to the postOneCricketeer

1 Answers

5
votes

The documentation is here https://docs.confluent.io/current/streams/developer-guide/datatypes.html#avro

This is the dependency

<dependency>
    <groupId>io.confluent</groupId>
    <artifactId>kafka-streams-avro-serde</artifactId>
    <version>${confluent.version}</version>
</dependency>

Make sure you add the repository

    <repositories>
        <repository>
            <id>confluent</id>
            <url>https://packages.confluent.io/maven/</url>
        </repository>
</repositories>

Lots of example code in here https://github.com/confluentinc/kafka-streams-examples/tree/5.2.1-post/src/test/java/io/confluent/examples/streams