Confluent Certified Developer for Apache Kafka Certification Examination Questions and Answers
When using the Confluent Kafka Distribution, where does the schema registry reside?
If I supply the setting compression.type=snappy to my producer, what will happen? (select two)
What isn't a feature of the Confluent schema registry?
To import data from external databases, I should use
Consumer failed to process record # 10 and succeeded in processing record # 11. Select the course of action that you should choose to guarantee at least once processing
How will you set the retention for the topic named “my-topic” to 1 hour?
What is the risk of increasing max.in.flight.requests.per.connection while also enabling retries in a producer?
What client protocol is supported for the schema registry? (select two)
A consumer has auto.offset.reset=latest, and the topic partition currently has data for offsets going from 45 to 2311. The consumer group never committed offsets for the topic before. Where will the consumer read from?
You are building a consumer application that processes events from a Kafka topic. What is the most important metric to monitor to ensure real-time processing?
The rule "same key goes to the same partition" is true unless...
You are using JDBC source connector to copy data from 2 tables to two Kafka topics. There is one connector created with max.tasks equal to 2 deployed on a cluster of 3 workers. How many tasks are launched?
There are 3 producers writing to a topic with 5 partitions. There are 10 consumers consuming from the topic as part of the same group. How many consumers will remain idle?
To prevent network-induced duplicates when producing to Kafka, I should use
Producing with a key allows to...
Compaction is enabled for a topic in Kafka by setting log.cleanup.policy=compact. What is true about log compaction?
You are receiving orders from different customer in an "orders" topic with multiple partitions. Each message has the customer name as the key. There is a special customer named ABC that generates a lot of orders and you would like to reserve a partition exclusively for ABC. The rest of the message should be distributed among other partitions. How can this be achieved?
When auto.create.topics.enable is set to true in Kafka configuration, what are the circumstances under which a Kafka broker automatically creates a topic? (select three)
A topic has three replicas and you set min.insync.replicas to 2. If two out of three replicas are not available, what happens when a consume request is sent to broker?
A kafka topic has a replication factor of 3 and min.insync.replicas setting of 2. How many brokers can go down before a producer with acks=1 can't produce?
A consumer is configured with enable.auto.commit=false. What happens when close() is called on the consumer object?
A topic "sales" is being produced to in the Americas region. You are mirroring this topic using Mirror Maker to the European region. From there, you are only reading the topic for analytics purposes. What kind of mirroring is this?