Summer Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: ecus65

Confluent CCAAK - Confluent Certified Administrator for Apache Kafka

Page: 2 / 2
Total 54 questions

A topic ’recurring payments’ is created on a Kafka cluster with three brokers (broker id '0', ’1’, ‘2’) and nine partitions. The min.insync.replicas is set to three, and the producer is set with acks=all. Kafka Broker with id '0' is down.

Which statement is correct?

A.

Consumers can read committed messages from partitions on broker id 1, 2

B.

Producers can write messages to all the partitions, because new leaders for the partitions will be elected.

C.

Producers and consumers will have no impact on six of the nine partitions.

D.

Producers will only be able to write messages to the topic where the Leader for the partition is on Broker id 1.

A broker in the Kafka cluster is currently acting as the Controller.

Which statement is correct?

A.

It can have topic partitions.

B.

It is given precedence for replication to and from replica followers.

C.

All consumers are allowed to fetch messages only from this server.

D.

It is responsible for sending leader information to all producers.

An employee in the reporting department needs assistance because their data feed is slowing down. You start by quickly checking the consumer lag for the clients on the data stream.

Which command will allow you to quickly check for lag on the consumers?

A.

bin/kafka-consumer-lag.sh

B.

bin/kafka-consumer-groups.sh

C.

bin/kafka-consumer-group-throughput.sh

D.

bin/kafka-reassign-partitions.sh

Per customer business requirements, a system’s high availability is more important than message reliability.

Which of the following should be set?

A.

Unclean leader election should be enabled.

B.

The number of brokers in the cluster should be always odd (3, 5, 7 and so on).

C.

The linger.ms should be set to '0'.

D.

Message retention.ms should be set to -1.

You have an existing topic t1 that you want to delete because there are no more producers writing to it or consumers reading from it.

What is the recommended way to delete the topic?

A.

If topic deletion is enabled on the brokers, delete the topic using Kafka command line tools.

B.

The consumer should send a message with a 'null' key.

C.

Delete the log files and their corresponding index files from the leader broker.

D.

Delete the offsets for that topic from the consumer offsets topic.

A customer has a use case for a ksqlDB persistent query. You need to make sure that duplicate messages are not processed and messages are not skipped.

Which property should you use?

A.

processing.guarantee=exactly_once

B.

ksql.streams auto offset.reset=earliest

C.

ksql.streams auto.offset.reset=latest

D.

ksql.fail.on.production.error=false