Note |
---|
Data Stream = Kafka Topic + Data Governance |
...
Admin Client and Data Governance
...
Info |
---|
This action is more complex because specific records in topic have been incorrectly produced. Kafka does not store data like a database. So, we can’t delete individual records. We need to implement a filter pattern. |
...
Deleting Records by Admin Client
We can remove all records before a certain offset. With a single partition, it’s pretty simple, but with several partitions, it could become more complex.
If several partitions, we need to specify the partition as well.
...