Kafka - Streams
Given the code snippet:
What will the printed topology description include?
StreamsBuilder builder = new StreamsBuilder();
builder.stream("input-topic").mapValues(value -> value.toUpperCase()).to("output-topic");
Topology topology = builder.build();
System.out.println(topology.describe());What will the printed topology description include?
