Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

Data Stream = Kafka Topic + Data Governance

...

Admin Client and Data Governance

...

  1. Define Properties : bootstrap.servers=broker-1:8684

  2. Create Admin Client : adminClient = new AdminClient<>AdminClient<T>(properties)

  3. Perform Action such as create topic = adminClient.createTopic(topic)

...

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.