Confluent Certified Administrator for Apache Kafka Questions and Answers
Which use cases would benefit most from continuous event stream processing? (Choose three.)
You have a cluster with a topic t1 that already has uncompressed messages. A new Producer starts sending messages to t1 with compression enabled.
Which condition would allow this?
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?
A customer has a use case for a ksqlDB persistent query. You need to make sure that duplicate messages are not processed and messages are not skipped.
Which property should you use?
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?
Why does Kafka use ZooKeeper? (Choose two.)
How can load balancing of Kafka clients across multiple brokers be accomplished?
A developer is working for a company with internal best practices that dictate that there is no single point of failure for all data stored.
What is the best approach to make sure the developer is complying with this best practice when creating Kafka topics?
What is the correct permission check sequence for Kafka ACLs?
Where are Apache Kafka Access Control Lists stored?
A broker in the Kafka cluster is currently acting as the Controller.
Which statement is correct?
You want to increase Producer throughput for the messages it sends to your Kafka cluster by tuning the batch size (‘batch.size’) and the time the Producer waits before sending a batch (‘linger.ms’).
According to best practices, what should you do?
You are using Confluent Schema Registry to provide a RESTful interface for storing and retrieving schemas.
Which types of schemas are supported? (Choose three.)
Which model does Kafka use for consumers?
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?
Per customer business requirements, a system’s high availability is more important than message reliability.
Which of the following should be set?