Last Update 2 hours ago Total Questions : 54
The Confluent Certified Administrator for Apache Kafka content is now fully updated, with all current exam questions added 2 hours ago. Deciding to include CCAAK practice exam questions in your study plan goes far beyond basic test preparation.
You'll find that our CCAAK exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these CCAAK sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any Confluent Certified Administrator for Apache Kafka practice test comfortably within the allotted time.
If the Controller detects the failure of a broker that was the leader for some partitions, which actions will be taken? (Choose two.)
Kafka Connect is running on a two node cluster in distributed mode. The connector is a source connector that pulls data from Postgres tables (users/payment/orders), writes to topics with two partitions, and with replication factor two. The development team notices that the data is lagging behind.
What should be done to reduce the data lag*?
The Connector definition is listed below:
{
"name": "confluent-postgresql-source",
"connector class": "PostgresSource",
"topic.prefix": "postgresql_",
& nbsp; & nbsp; & nbsp;…
"db.name": "postgres",
"table.whitelist": "users.payment.orders”,
"timestamp.column.name": "created_at",
"output.data format": "JSON",
"db.timezone": "UTC",
"tasks.max": "1"
}
You are managing a cluster with a large number of topics, and each topic has a lot of partitions. A team wants to significantly increase the number of partitions for some topics.
Which parameters should you check before increasing the partitions?
A company is setting up a log ingestion use case where they will consume logs from numerous systems. The company wants to tune Kafka for the utmost throughput.
In this scenario, what acknowledgment setting makes the most sense?
In certain scenarios, it is necessary to weigh the trade-off between latency and throughput. One method to increase throughput is to configure batching of messages.
In addition to batch.size, what other producer property can be used to accomplish this?
Multiple clients are sharing a Kafka cluster.
As an administrator, how would you ensure that Kafka resources are distributed fairly to all clients?
How can authentication for both internal component traffic and external client traffic be accomplished?
Which of the following are Kafka Connect internal topics? (Choose three.)
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?
You have a Kafka cluster with topics t1 and t2. In the output below, topic t2 shows Partition 1 with a leader “-1”.
...
$ kafka-topics --zookeeper localhost:2181 --describe --topic t2
Topic: t2 Partition: 1 Leader: -1 Replicas: 1 Isr:
What is the most likely reason for this?
