Skip to content
Advertisement

Serde String[] in Kafka

I’m new in kafka. I am using the store builder and want to have a String[] of two elements as the value associated to the key. I set up the store like this:

JavaScript

When I call the method to have the data into the store :

JavaScript

I receive this error:

JavaScript

I should set the store like this:

JavaScript

but I don’t know what to put instead of Serdes.String()

Advertisement

Answer

You would need to define your own Serializer, Deserializer and Serde subclasses to do this.

You can simply use a plain string with JSON deserialization to create a String array, or CSV

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement