CCDAK Exam Questions
216 real CCDAK exam questions with expert-verified answers and explanations. Page 1 of 5.
- Question #1
If I want to send binary data through the REST proxy to topic "test_binary", it needs to be base64 encoded. A consumer connecting directly into the Kafka topic
- Question #2
Which is an optional field in an Avro record?
- Question #3
A consumer application is using KafkaAvroDeserializer to deserialize Avro messages. What happens if message schema is not present in AvroDeserializer local cache?
- Question #4
Which of the following event processing application is stateless? (select two)
- Question #5
A consumer starts and has auto.offset.reset=latest, and the topic partition currently has data for offsets going from 45 to 2311. The consumer group has committed the offset 643 fo...
- Question #6
A Zookeeper ensemble contains 3 servers. Over which ports the members of the ensemble should be able to communicate in default configuration? (select three)
- Question #7
To get acknowledgement of writes to only the leader partition, we need to use the config...
- Question #8
How will you find out all the partitions where one or more of the replicas for the partition are not in- sync with the leader?
- Question #9
If a topic has a replication factor of 3...
- Question #10
How do Kafka brokers ensure great performance between the producers and consumers? (select two)
- Question #11
What isn't an internal Kafka Connect topic?
- Question #12
To enhance compression, I can increase the chances of batching by using
- Question #13
There are 3 producers writing to a topic with 5 partitions. There are 5 consumers consuming from the topic. How many Controllers will be present in the cluster?
- Question #14
The exactly once guarantee in the Kafka Streams is for which flow of data?
- Question #15
We would like to be in an at-most once consuming scenario. Which offset commit strategy would you recommend?
- Question #16
A topic receives all the orders for the products that are available on a commerce site. Two applications want to process all the messages independently - order fulfilment and monit...
- Question #17
Which of the following Kafka Streams operators are stateful? (select all that apply)
- Question #18
A bank uses a Kafka cluster for credit card payments. What should be the value of the property unclean.leader.election.enable?
- Question #19
A kafka topic has a replication factor of 3 and min.insync.replicas setting of 1. What is the maximum number of brokers that can be down so that a producer with acks=all can still...
- Question #20
I am producing Avro data on my Kafka cluster that is integrated with the Confluent Schema Registry. After a schema change that is incompatible, I know my data will be rejected. Whi...
- Question #21
How will you read all the messages from a topic in your KSQL query?
- Question #22
You want to sink data from a Kafka topic to S3 using Kafka Connect. There are 10 brokers in the cluster, the topic has 2 partitions with replication factor of 3. How many tasks wil...
- Question #23
Producing with a key allows to...
- Question #24
Select all the way for one consumer to subscribe simultaneously to the following topics - topic.history, topic.sports, topic.politics? (select two)
- Question #25
What isn't a feature of the Confluent schema registry?
- Question #26
Which of the following errors are retriable from a producer perspective? (select two)
- Question #27
How will you find out all the partitions without a leader?
- Question #28
Which actions will trigger partition rebalance for a consumer group? (select three)
- Question #29
Kafka is configured with following parameters - log.retention.hours = 168 log.retention.minutes = 168 log.retention.ms = 168 How long will the messages be retained for?
- Question #30
To read data from a topic, the following configuration is needed for the consumers
- Question #31
How does a consumer commit offsets in Kafka?
- Question #32
In Java, Avro SpecificRecords classes are
- Question #33
A producer is sending messages with null key to a topic with 6 partitions using the DefaultPartitioner. Where will the messages be stored?
- Question #34
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?
- Question #35
In Avro, removing a field that does not have a default is a __ schema evolution
- Question #36
An ecommerce website maintains two topics - a high volume "purchase" topic with 5 partitions and low volume "customer" topic with 3 partitions. You would like to do a stream-table...
- Question #37
You are sending messages with keys to a topic. To increase throughput, you decide to increase the number of partitions of the topic. Select all that apply.
- Question #38
In Kafka Streams, by what value are internal topics prefixed by?
- Question #39
You are using JDBC source connector to copy data from 3 tables to three Kafka topics. There is one connector created with max.tasks equal to 2 deployed on a cluster of 3 workers. H...
- Question #40
You are doing complex calculations using a machine learning framework on records fetched from a Kafka topic. It takes more about 6 minutes to process a record batch, and the consum...
- Question #41
What data format isn't natively available with the Confluent REST Proxy?
- Question #42
The kafka-console-consumer CLI, when used with the default options
- Question #43
We have a store selling shoes. What dataset is a great candidate to be modeled as a KTable in Kafka Streams?
- Question #44
When using plain JSON data with Connect, you see the following error messageorg.apache.kafka.connect.errors.DataExceptionJsonDeserializer with schemas.enable requires "schema" and...
- Question #45
To allow consumers in a group to resume at the previously committed offset, I need to set the proper value for...
- Question #46
A Zookeeper ensemble contains 5 servers. What is the maximum number of servers that can go missing and the ensemble still run?
- Question #47
A consumer sends a request to commit offset 2000. There is a temporary communication problem, so the broker never gets the request and therefore never responds. Meanwhile, the cons...
- Question #48
Your topic is log compacted and you are sending a message with the key K and value null. What will happen?
- Question #49
How often is log compaction evaluated?
- Question #50
A producer application in a developer machine was able to send messages to a Kafka topic. After copying the producer application into another developer's machine, the producer is a...