Kafka - Advanced Stream Processing
Given this Kafka Streams snippet, what will happen if a record causes a NullPointerException inside the mapValues function?
stream.mapValues(value -> {
if(value == null) throw new NullPointerException();
return value.toUpperCase();
});