IT認証試験問題集
毎月、GOWUKAKUは1500人以上の受験者が試験準備を助けて、試験に合格するために受験者にご協力します
 ホームページ / CCDAK 問題集  / CCDAK 問題練習

Confluent CCDAK 問題練習

Confluent Certified Developer for Apache Kafka Certification Examination 試験

最新更新時間: 2024/04/09,合計150問。

【2024桜まつりキャンペーン】:CCDAK 最新真題を買う時、日本語版と英語版両方を同時に獲得できます。

実際の問題集を練習し、試験のポイントを了解し、テストに申し込むするかどうかを決めることができます。

さらに試験準備時間の35%を節約するには、CCDAK 問題集を使用してください。

 / 4

Question No : 1
To continuously export data from Kafka into a target database, I should use

正解:
Explanation:
Kafka Connect Sink is used to export data from Kafka to external databases and Kafka Connect Source is used to import from external databases into Kafka.

Question No : 2
A producer just sent a message to the leader broker for a topic partition. The producer used acks=1 and therefore the data has not yet been replicated to followers.
Under which conditions will the consumer see the message?

正解:
Explanation:
The high watermark is an advanced Kafka concept, and is advanced once all the ISR replicates the latest offsets. A consumer can only read up to the value of the High Watermark (which can be less than the highest offset, in the case of acks=1)

Question No : 3
What isn't a feature of the Confluent schema registry?

正解:
Explanation:
Data is stored on brokers.

Question No : 4
You are running a Kafka Streams application in a Docker container managed by Kubernetes, and upon application restart, it takes a long time for the docker container to replicate the state and get back to processing the data .
How can you improve dramatically the application restart?

正解:
Explanation:
Although any Kafka Streams application is stateless as the state is stored in Kafka, it can take a while and lots of resources to recover the state from Kafka. In order to speed up recovery, it is advised to store the Kafka Streams state on a persistent volume, so that only the missing part of the state needs to be recovered.

Question No : 5
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?

正解:
Explanation:
Latest means that data retrievals will start from where the offsets currently end

Question No : 6
What is true about partitions? (select two)

正解:
Explanation:
Only one of the replicas is elected as partition leader. And a broker can definitely hold many partitions from the same topic on its disk, try creating a topic with 12 partitions on one broker!

Question No : 7
In Kafka, every broker... (select three)

正解:
Explanation:
Kafka topics are divided into partitions and spread across brokers. Each brokers knows about all the metadata and each broker is a bootstrap broker, but only one of them is elected controller

Question No : 8
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?

正解:
Explanation:
This is active-passing as the replicated topic is used for read-only purposes only

Question No : 9
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?

正解:
Explanation:
In case of KStream-KStream join, both need to be co-partitioned. This restriction is not applicable in case of join with GlobalKTable, which is the most efficient here.

Question No : 10
Which of the following is not an Avro primitive type?

正解:
Explanation:
date is a logical type

Question No : 11
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?

正解:
Explanation:
The REST Proxy requires to receive data over REST that is already base64 encoded, hence it is the responsibility of the producer

Question No : 12
A Zookeeper ensemble contains 5 servers .
What is the maximum number of servers that can go missing and the ensemble still run?

正解:
Explanation:
majority consists of 3 zk nodes for 5 nodes zk cluster, so 2 can fail

Question No : 13
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?

正解:
Explanation:
A Custom Partitioner allows you to easily customise how the partition number gets computed from a source message.

Question No : 14
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 for the topic before.
Where will the consumer read from?

正解:
Explanation:
The offsets are already committed for this consumer group and topic partition, so the property auto.offset.reset is ignored

Question No : 15
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)

正解:
Explanation:
session.timeout.ms must be decreased to 3 seconds to allow for a faster rebalance, and the heartbeat thread must be quicker, so we also need to decrease heartbeat.interval.ms

 / 4
Confluent