As usual, it's bit confusing to see benefits of splitting methods over others.
- I can't see the difference/Pros-Cons between having
Topic1 -> P0
andTopic 2 -> P0
- over
Topic 1 -> P0, P1
and a consumer pull from 2 topics or single topic/2 partitions, whileP0
andP1
will hold different event types or entities.
Thee only benefit I can see if another consumer needs Topic 2 data then it's easy to consume
- Regarding topic auto generation, any benefits behind that way or it will be out of hand after some time?
Thanks