Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-10 Thread Yoda Jedi Master
"REPLACE_THREAD - Replaces the thread receiving the exception and processing continues with the same number of configured threads. (Note: this can result in duplicate records depending on the application’s processing mode determined by the PROCESSING_GUARANTEE_CONFIG value)" If an application gets

Re: Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-10 Thread Yoda Jedi Master
Just one reminder that you should check the failed > message to avoid this `uncaught exception` thrown again, because if this > happens frequently, it'll impact application performance. > > Thank you. > Luke > > On Tue, Aug 10, 2021 at 4:25 PM Yoda Jedi Master > wrote

Re: Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-10 Thread Yoda Jedi Master
ht exception` thrown again, because if this > > happens frequently, it'll impact application performance. > > > > Thank you. > > Luke > > > > On Tue, Aug 10, 2021 at 4:25 PM Yoda Jedi Master > wrote: > > > >> "REPLACE_THREAD -

Re: Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-24 Thread Yoda Jedi Master
ing > > If problematic records cause an exception in user code, the user code > needs to provide functionality to skip the problematic record. > > Best, > Bruno > > On 10.08.21 13:26, Yoda Jedi Master wrote: > > Hi Bruno, thank you for your answer. > > I mean th