DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Currently, Kafka Streams does not support ProcessingExceptionHandler for GlobalKTable processors. When a processing exception occurs during GlobalKTable record processing, the GlobalStreamThread fails and terminates, causing the entire Kafka Streams application to shut down. This behaviour is inconsistent with regular KStream/KTable processing, where ProcessingExceptionHandler allows applications to handle exceptions gracefully and continue processing.
Public Interfaces
| Name | Type | Default | Description |
|---|---|---|---|
| default.processing.exception.handler.invoke.for.global | Boolean | False | When false (default), maintains backwards-compatible behaviour where global exceptions terminate the application. When true, enables the ProcessingExceptionHandler for GlobalKTable exceptions. This config will be removed in Kafka Streams 5.0, where global exception handling will be enabled by default |
`default.processing.exception.handler.invoke.for.global` (Type: boolean, Default: false)
- Controls whether the ProcessingExceptionHandler is invoked for GlobalKTable processing exceptions
- When false (default), maintains backwards-compatible behaviour where global exceptions terminate the application
- When true, enables the ProcessingExceptionHandler for GlobalKTable exceptions
- **Deprecated immediately upon introduction** - This config will be removed in Kafka Streams 5.0, where global exception handling will be enabled by default
...