00:00

QUESTION 16

Where are the dynamic configurations for a topic stored?

Correct Answer: A
Dynamic topic configurations are maintained in Zookeeper.

QUESTION 17

Which of the following is true regarding thread safety in the Java Kafka Clients?

Correct Answer: AC
KafkaConsumer is not thread-safe, KafkaProducer is thread safe.

QUESTION 18

is KSQL ANSI SQL compliant?

Correct Answer: B
KSQL is not ANSI SQL compliant, for now there are no defined standards on streaming SQL languages

QUESTION 19

What is the risk of increasing max.in.flight.requests.per.connection while also enabling retries in a producer?

Correct Answer: B
Some messages may require multiple retries. If there are more than 1 requests in flight, it may result in messages received out of order. Note an exception to this rule is if you enable the producer settingenable.idempotence=true which takes care of the out of ordering case on its own. Seehttps://issues.apache.org/jira/browse/KAFKA-5494

QUESTION 20

To read data from a topic, the following configuration is needed for the consumers

Correct Answer: B
All brokers can respond to Metadata request, so a client can connect to any broker in the cluster.