How to
How Conduktor helps when Kafka is failing?
How to consume data from a Topic?
Several ways:- from the top bar: add a Consumer and select your topic inside
- from the topic list: the inspect button next to the name of the topic
- from the topic details view: from the CONSUME DATA button
How to reset the offsets of a Topic?
The question is more: how to reset the offsets for a Consumer Group and a Topic it has subscribed to? The offsets of a Topic cannot be “reset”. The offsets are ever growing for all partitions of a Topic (data incoming into a Topic => offsets increases). Go to the Consumer Group itself, and Reset Offsets from here.How to reassign the partitions of a Topic?
In the Topic Details view, click on the “Advanced” drop-down, then choose “Reassign partitions…” to open the Reassignment dialog.
You can also choose to import your own in the json format expected by kafka-reassign-partitions.sh.


How to add partitions to a Topic?
While you will have made calculations on the number of partitions required for a topic at the creation stage, applications evolve and you may need to add more, usually to aid on throughput. You can add partitions on the fly in Conduktor and it’s a straightforward procedure. Go to the “Advanced” section of a topic as shown below and click on “Add Partitions”, you will then have the option to add more partitions. However, it is important to understand if messages are produced with keys. When publishing a keyed message, Kafka provides a guarantee that messages with the same key are always routed to the same partition. This guarantee can be important for certain applications since messages within a partition are always delivered in order to the consumer. If the number of partitions changes, such a guarantee may no longer hold..png?fit=max&auto=format&n=5TjI4-HLqdnQIYNU&q=85&s=b287e826d934d475ced263e07188eec3)
.png?fit=max&auto=format&n=5TjI4-HLqdnQIYNU&q=85&s=62790b9b87eeefcd8fece718b41eb289)
How to remove data from a Topic?
Conduktor can empty a topic, or a specific partition:- a whole topic: “Empty Topic…”

- a specific partition: the Delete icon on the right
