Description
Minor followup improvement to KAFKA-6687 in which we rewrite the topology to make it possible for a user to subscribe multiple KStream/KTables to the same topic or identical set of topics. We could further extend this to make it possible for multiple KStream/KTables to be subscribed to overlapping but not identical sets of topics, ie
KStream streamA = builder.stream("topic"); KStream streamB = builder.stream("topic", "other-topic");
One way to do this would be to break up multiple-topic source nodes into multiple single-topic sources that get merged together in the child node.
Attachments
Issue Links
- is related to
-
KAFKA-6687 Allow to read a topic multiple times
- Resolved