Kafka - Advanced Stream Processing
Examine this Kafka Streams processor code:
What is the main issue with this error handling approach?
stream.foreach((key, value) -> {
try {
process(value);
} catch (Exception e) {
// empty catch block
}
});What is the main issue with this error handling approach?
