将 Kafka Streams 与 Avro Schema Registry 一起使用



我正在寻求使用schema-registry的kafka-stream。我有谷歌,找不到合适的教程。

文档在这里https://docs.confluent.io/current/streams/developer-guide/datatypes.html#avro

这是依赖关系

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

确保添加存储库

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

这里有很多示例代码。并非所有都使用 Avro
https://github.com/confluentinc/kafka-streams-examples/tree/5.2.1-post/src/test/java/io/confluent/examples/streams

相关内容

  • 没有找到相关文章

最新更新