Error Handling in Kafka Streams: Overview
Learn about the different types of errors in Kafka Streams applications.
We'll cover the following...
Mistakes are a part of life, and errors in software are no different. Our Kafka Streams application will encounter errors at some point, and we will have to deal with these errors somehow.
By default, a Kafka Streams application will shut down on any uncaught exception. This is sensible when we are developing the application but very bad for running production applications. We rarely want our entire application to shut down just because we forgot to catch an ...