Kafka - Advanced Stream Processing
What is wrong with this error handling approach in Kafka Streams?
stream.mapValues(value -> {
try {
return process(value);
} catch (Exception e) {
throw new RuntimeException();
}
});