Skip to content

Tag: apache-kafka

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: When I call the method to have the data into the store : I receive this error: I should set the store like this: but I don’t

Kafka Consumer stuck at deserialization

I created a simple producer-consumer app that using a custom Serializer and Deserializer. After adding a new method to the Message class that I produce, the consumer started being stack at deserialization. My producer is using the new class (with the new method) and the consumer is using the old class (withou…