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

A company has an existing Kafka cluster running without SSL/TLS enabled. The customer wants to enable SSL on brokers to secure data in transit, but they would like to give applications connecting to this cluster some time to migrate to using SSL connection instead of putting a hard stop.

Which solution will meet the customer's requirements?

A.

Enable SSL on the current Listener, and do not enable mTLS.

B.

Modify the advertised listeners setting on brokers to use SSL.

C.

Create a new listener with SSL enabled.

D.

Enable SSL on the current listener, and do not implement SSL on application side.

Which use cases would benefit most from continuous event stream processing? (Choose three.)

A.

Fraud detection

B.

Context-aware product recommendations for e-commerce

C.

End-of-day financial settlement processing

D.

Log monitoring/application fault detection

E.

Historical dashboards

What are important factors in sizing a ksqlDB cluster? (Choose three.)

A.

Data Schema

B.

Number of Queries

C.

Number of Partitions

D.

Data Encryption

E.

Topic Data Retention

Where are Apache Kafka Access Control Lists stored?

A.

Broker

B.

ZooKeeper

C.

Schema Registry

D.

Connect

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?

A.

Broker 1 failed.

B.

Leader shows “-1” while the log cleaner thread runs on Broker 1.

C.

Compression has been enabled on Broker 1.

D.

Broker 1 has another partition clashing with the same name.

When a broker goes down, what will the Controller do?

A.

Wait for a follower to take the lead.

B.

Trigger a leader election among the remaining followers to distribute leadership.

C.

Become the leader for the topic/partition that needs a leader, pending the broker return in the cluster.

D.

Automatically elect the least loaded broker to become the leader for every orphan's partitions.

Which out-of-the-box Kafka Authorizer implementation uses ZooKeeper?

A.

RBAC

B.

ACLs

C.

Ranger

D.

LDAP

What is the primary purpose of Kafka quotas?

A.

Throttle clients to prevent them from monopolizing Broker resources.

B.

Guarantee faster response times for some clients.

C.

Limit the number of clients that can connect to the Kafka cluster.

D.

Limit the total number of Partitions in the Kafka cluster

What does Kafka replication factor provide? (Choose two.)

A.

Performance

B.

Durability

C.

Availability

D.

Security

If a broker's JVM garbage collection takes too long, what can occur?

A.

There will be a trigger of the broker's log cleaner thread.

B.

ZooKeeper believes the broker to be dead.

C.

There is backpressure to, and pausing of, Kafka clients.

D.

Log files written to disk are loaded into the page cache.