Skip to content

Test Spring Kafka application (using Avro as a serialization mechanism) without the need for Confluent Schema Registry

Notifications You must be signed in to change notification settings

ivlahek/kafka-avro-without-registry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kafka-avro-without-registry

Spring framework has great support for testing your Spring application with Apache Kafka. You add spring-kafka-dependency in your maven pom.xml file and you annotate your test class with @EmbbededKafka and Spring will do the rest. Spring will start embedded Kafka on some random port and you are ready to test your application. It is not a real production-ready Kafka, but for testing, it is enough. You can test if your application is sending data to the correct topic. You can test whether your application has received data from the topic.

But if your application uses Apache Avro for serialization, and you do not use Confluent Schema Registry (which is the case when you want to use spring-kafka-test for testing) then you have a problem. There is no Serializer/Deserializer provided by the Spring framework for such a use case. Even if you just want to test your application, your application needs to have access to Confluent Schema Registry to work.

This is a test project in which is shown how to test Spring Kafka application without the need for Confluent Schema Registry.

Link to the article published on Medium https://medium.com/@igorvlahek1/no-need-for-schema-registry-in-your-spring-kafka-tests-a5b81468a0e1

About

Test Spring Kafka application (using Avro as a serialization mechanism) without the need for Confluent Schema Registry

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages