23 August, 2024
A Review Of 100% Correct CCDAK Exam Prep
Your success in Confluent CCDAK is our sole target and we develop all our CCDAK braindumps in a way that facilitates the attainment of this target. Not only is our CCDAK study material the best you can find, it is also the most detailed and the most updated. CCDAK Practice Exams for Confluent CCDAK are written to the highest standards of technical accuracy.
Question 1
You have a consumer group of 12 consumers and when a consumer gets killed by the process management system, rather abruptly, it does not trigger a graceful shutdown of your consumer. Therefore, it takes up to 10 seconds for a rebalance to happen. The business would like to have a 3 seconds rebalance time. What should you do? (select two)
Question 2
To read data from a topic, the following configuration is needed for the consumers
Question 3
A consumer wants to read messages from partitions 0 and 1 of a topic topic1. Code snippet is shown below.
consumer.subscribe(Arrays.asList("topic1")); List pc = new ArrayList<>();
pc.add(new PartitionTopic("topic1", 0));
pc.add(new PartitionTopic("topic1", 1)); consumer.assign(pc);
consumer.subscribe(Arrays.asList("topic1")); List
pc.add(new PartitionTopic("topic1", 0));
pc.add(new PartitionTopic("topic1", 1)); consumer.assign(pc);
Question 4
Select all that applies (select THREE)
Question 5
In Avro, removing a field that does not have a default is a schema evolution
Question 6
An ecommerce wesbite sells some custom made goods. What's the natural way of modeling this data in Kafka streams?
Question 7
In Avro, adding a field to a record without default is a schema evolution
Question 8
If you enable an SSL endpoint in Kafka, what feature of Kafka will be lost?
Question 9
In the Kafka consumer metrics it is observed that fetch-rate is very high and each fetch is small. What steps will you take to increase throughput?
Question 10
Two consumers share the same group.id (consumer group id). Each consumer will
Question 11
Which KSQL queries write to Kafka?
Question 12
If I want to send binary data through the REST proxy, it needs to be base64 encoded. Which component needs to encode the binary data into base 64?
Question 13
By default, which replica will be elected as a partition leader? (select two)
Question 14
What is the risk of increasing max.in.flight.requests.per.connection while also enabling retries in a producer?
Question 15
Where are the ACLs stored in a Kafka cluster by default?
Question 16
What data format isn't natively available with the Confluent REST Proxy?
Question 17
What is the disadvantage of request/response communication?
Question 18
Which Kafka CLI should you use to consume from a topic?
Question 19
To allow consumers in a group to resume at the previously committed offset, I need to set the proper value for...
Question 20
What's is true about Kafka brokers and clients from version 0.10.2 onwards?
Question 21
Suppose you have 6 brokers and you decide to create a topic with 10 partitions and a replication factor of 3. The brokers 0 and 1 are on rack A, the brokers 2 and 3 are on rack B, and the brokers 4 and 5 are on rack C. If the leader for partition 0 is on broker 4, and the first replica is on broker 2, which broker can host the last replica? (select two)
Question 22
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 join of these topics. How should you proceed?
Question 23
What is returned by a producer.send() call in the Java API?
Question 24
When using plain JSON data with Connect, you see the following error messageorg.apache.kafka.connect.errors.DataExceptionJsonDeserializer with schemas.enable requires "schema" and "payload" fields and may not contain additional fields. How will you fix the error?
Question 25
If I supply the setting compression.type=snappy to my producer, what will happen? (select two)
Question 26
A client connects to a broker in the cluster and sends a fetch request for a partition in a topic. It gets an exception Not Leader For Partition Exception in the response. How does client handle this situation?
Question 27
What is true about replicas ?
Question 28
The Controller is a broker that is... (select two)
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
A Kafka producer application wants to send log messages to a topic that does not include any key. What are the properties that are mandatory to configure for the producer configuration? (select three)
Question 31
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 32
How will you read all the messages from a topic in your KSQL query?
Question 33
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)
Question 34
Where are KSQL-related data and metadata stored?