If the Controller detects the failure of a broker that was the leader for some partitions, which actions will be taken? (Choose two.)
You have an existing topic t1 that you want to delete because there are no more producers writing to it or consumers reading from it.
What is the recommended way to delete the topic?
Which connector type takes data from a topic and sends it to an external data system?
Which use cases would benefit most from continuous event stream processing? (Choose three.)
You have a Kafka cluster with topics t1 and t2. In the output below, topic t2 shows Partition 1 with a leader “-1”.
...
$ kafka-topics --zookeeper localhost:2181 --describe --topic t2
Topic: t2 Partition: 1 Leader: -1 Replicas: 1 Isr:
What is the most likely reason for this?
In certain scenarios, it is necessary to weigh the trade-off between latency and throughput. One method to increase throughput is to configure batching of messages.
In addition to batch.size, what other producer property can be used to accomplish this?
How can authentication for both internal component traffic and external client traffic be accomplished?
Your Kafka cluster has four brokers. The topic t1 on the cluster has two partitions, and it has a replication factor of three. You create a Consumer Group with four consumers, which subscribes to t1.
In the scenario above, how many Controllers are in the Kafka cluster?