Kafka - Advanced Stream Processing
What is the output of this Kafka Streams processor code if the input record value is null?
stream.mapValues(value -> {
try {
return value.toLowerCase();
} catch (Exception e) {
return "error";
}
});