CCDAK Dumps

CCDAK Free Practice Test

Confluent CCDAK: Confluent Certified Developer for Apache Kafka Certification Examination

QUESTION 21

How can you gracefully make a Kafka consumer to stop immediately polling data from Kafka and gracefully shut down a consumer application?

Correct Answer: A
See https://stackoverflow.com/a/37748336/3019499

QUESTION 22

A customer has many consumer applications that process messages from a Kafka topic. Each consumer application can only process 50 MB/s. Your customer wants to achieve a target throughput of 1 GB/s. What is the minimum number of partitions will you suggest to the customer for that particular topic?

Correct Answer: B
each consumer can process only 50 MB/s, so we need at least 20 consumers consuming one partition so that 50 * 20 = 1000 MB target is achieved.

QUESTION 23

Which Kafka CLI should you use to consume from a topic?

Correct Answer: A
Examplekafka-console-consumer --bootstrap-server 127.0.0.1:9092 --topic test --from- beginning

QUESTION 24

You want to perform table lookups against a KTable everytime a new record is received from the KStream. What is the output of KStream-KTable join?

Correct Answer: D
Here KStream is being processed to create another KStream.

QUESTION 25

Which of the following Kafka Streams operators are stateless? (select all that apply)

Correct Answer: ABCDE
Seehttps://kafka.apache.org/20/documentation/streams/developer-guide/dsl-api.html#stateless-transformations