You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kafka-streams-quickstarts/kafka-streams-exception-handler-production/README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
This module demonstrates the following:
4
4
5
5
- The usage of the Kafka Streams configuration `default.production.exception.handler` to handle production and serialization exceptions.
6
-
- The implementation of a custom production exception handler that logs the exceptions and either continues processing or fails the pipeline based on the exception type.
6
+
- The implementation of a custom production exception handler.
7
7
- Unit testing using Topology Test Driver.
8
8
9
9
In this module, records of type `<String, KafkaPerson>` are streamed from a topic named `PERSON_TOPIC`.
@@ -17,6 +17,7 @@ The following tasks are performed:
17
17
3. Write the resulting records to a new topic named `PERSON_PRODUCTION_EXCEPTION_HANDLER_TOPIC`.
18
18
19
19
The custom production exception handler is invoked when records fail to be sent to Kafka or when the configured serdes fail to serialize the records.
20
+
It logs the exceptions and either continues processing or fails the pipeline based on the exception type.
0 commit comments