Is there a way in Kafka for a client to subscribe to a topic to get a snapshot/state of the world "KTable" when first connect and also subscribe to the subsequent updates?
Say we have a Topic of records like below
|Key | Value | |:-----|------:| | a | vala | | b | valb | | a | valc | | d | vald | | d | vale |
And when any client (existing or new) connect/reconnect, I'd like to one-off give them
|Key | Value | |:-----|------:| | b | valb | | a | valc | | d | vale |
And subscribe them to further updates as a stream.