Kafka - Streams
Identify the error in this Kafka Streams topology code:
StreamsBuilder builder = new StreamsBuilder();
KStream stream = builder.stream("input");
stream.filter((k,v) -> v.length() > 5);
stream.to("output");
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions