I am trying to understand is it possible to find specific message in Kafka topic. Kafka message KEY was considered for means of solving the problem.
But I suspect, that key allow to identify only the partition inside topic, not the specific message inside partition.
Is there any way to identify specific message in Kafka partition, and finding this message for further using (for example, reading this specific message)?
It is about stream processing.
For example:
Partition include 4 messages: Message 1, Message 2, Message 3, Message 4. And I want to find only Message 1, relying on the fact that this Message has (possible!) the unique id. Like id in database.