loicgreffier commented on code in PR #16300:
URL: https://github.com/apache/kafka/pull/16300#discussion_r1698085150


##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/StreamTask.java:
##########
@@ -917,8 +922,34 @@ public void punctuate(final ProcessorNode<?, ?, ?, ?> node,
             maybeMeasureLatency(() -> node.punctuate(timestamp, punctuator), 
time, punctuateLatencySensor);
         } catch (final StreamsException e) {
             throw e;
-        } catch (final RuntimeException e) {
-            throw new StreamsException(String.format("%sException caught while 
punctuating processor '%s'", logPrefix, node.name()), e);
+        } catch (final Exception e) {

Review Comment:
   @mjsax For this reason: 
https://github.com/apache/kafka/pull/16300#discussion_r1687844510
   
   `Exception` is caught in `ProcessorNode#process`, 
`RecordCollectorImpl#handleException` and `RecordDeserializer#deserialize` so 
the last discussion mentionned to stick to `Exception` here to be consistent.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to