Details
-
Sub-task
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
None
-
None
Description
The collect(...) methods in SourceOutput currently declare that they can trow Exception.
That was originally introduced, because it can be the case when pushing records into the chain.
However, one can argue that the Source Reader that calls these methods is in no way supposed to handle these exceptions, because they come from downstream operator failures. Because of that, we should go for unchecked exceptions and handle downstream exceptions via ExceptionInChainedOperatorException.