Summer Sale Special 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: ex2p65

Exact2Pass Menu

Question # 4

Which ksqlDB statement produces data that is persisted into a Kafka topic?

A.

SELECT (Pull Query)

B.

SELECT (Push Query)

C.

INSERT VALUES

D.

CREATE TABLE

Full Access
Question # 5

Your organization has a mission-critical Kafka cluster that must be highly available. A Disaster Recovery (DR) cluster has been set up using Replicator, and data is continuously being replicated from source cluster to the DR cluster. However, you notice that the message on offset 1002 on source cluster does not seem to match with offset 1002 on the destination DR cluster.

Which statement is correct?

A.

The DR cluster is lagging behind updates; once the DR cluster catches up, the messages will match.

B.

The message on DR cluster got over-written accidently by another application.

C.

The offsets for the messages on the source, destination cluster may not match.

D.

The message was updated on source cluster, but the update did not flow into destination DR cluster and errored.

Full Access
Question # 6

Which option is a valid Kafka Topic cleanup policy? (Choose two.)

A.

delete

B.

default

C.

compact

D.

cleanup

Full Access
Question # 7

Kafka broker supports which Simple Authentication and Security Layer (SASL) mechanisms for authentication? (Choose three.)

A.

SASL/PLAIN

B.

SASL/SAML20

C.

SASL/GSSAPI (Kerberos)

D.

SASL/OAUTHBEARER

E.

SASL/OTP

Full Access
Question # 8

Which secure communication is supported between the REST proxy and REST clients?

A.

TLS (HTTPS)

B.

MD5

C.

SCRAM

D.

Kerberos

Full Access
Question # 9

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?

A.

sendbufferbytes

B.

linger.ms

C.

compression

D.

delivery.timeout.ms

Full Access
Question # 10

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.

Full Access
Question # 11

Why does Kafka use ZooKeeper? (Choose two.)

A.

To access information about the leaders and partitions

B.

To scale the number of brokers in the cluster

C.

To prevent replication between clusters

D.

For controller election

Full Access
Question # 12

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.

Check the producer batch size and buffer size.

B.

Check if compression is being used.

C.

Check the max open file count on brokers.

D.

Check if acks=all is being used.

Full Access
Question # 13

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.

Full Access
Question # 14

How can load balancing of Kafka clients across multiple brokers be accomplished?

A.

Partitions

B.

Replicas

C.

Offsets

D.

Connectors

Full Access
Question # 15

What are benefits to gracefully shutting down brokers? (Choose two.)

A.

It will sync all its logs to disk to avoid needing to do any log recovery when it restarts.

B.

It will migrate any partitions the server is the leader for to other replicas prior to shutting down.

C.

It will automatically re-elect leaders on restart.

D.

It will balance the partitions across brokers before restarting.

Full Access
Question # 16

A Kafka administrator notices that their consumers of Topic X are starting to fall behind. The administrator sees that Topic X has four partitions, and the consumer group has two consumers.

Which change can increase the performance of the Consumer Group?

A.

Increase the partitions in Topic X.

B.

Create a new consumer group for Topic X containing two (2) consumers.

C.

Decrease the consumer acknowledgment property to increase throughput.

D.

Increase the number of consumers in the consumer group.

Full Access