...

/

Deserialization Error Handling

Deserialization Error Handling

Learn how to handle deserialization errors in Kafka Streams applications.

Deserialization errors are common in Kafka Streams, especially during development, but we should be ready for them in production as well. They can occur when the structure of the incoming message is different than the one expected by the application.

The DeserializationExceptionHandler interface

For example, when our application expects a ...