Hi,

Is there any mechanism for handling of errors produced by Flink SQL?
It can be useful for various use cases:
1. Logging exceptions and the erroneous row to a kafka topic
2. Ignoring transient exceptions instead of throwing and failing the entire
job

If there are no such mechanisms may I propose something which looks like

WITH (
   'connector' = 'jdbc',
   'url' = 'jdbc:mysql://localhost:3306/mydatabase',
   'table-name' = 'users'
   'exception-handler' = <classpath_to_handler_class>);


-- 
Regards,

Yun Long

Reply via email to