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
A Zookeeper configuration has tickTime of 2000, initLimit of 20 and syncLimit of 5. What's the timeout value for followers to connect to Zookeeper?
Correct Answer:
D
tick time is 2000 ms, and initLimit is the config taken into account when establishing a connection to Zookeeper, so the answer is 2000 * 20 = 40000 ms = 40s
You are sending messages with keys to a topic. To increase throughput, you decide to
increase the number of partitions of the topic. Select all that apply.
Correct Answer:
CD
Increasing the number of partition causes new messages keys to get hashed differently, and breaks the guarantee "same keys goes to the same partition". Kafka logs are immutable and the previous messages are not re-shuffled
What isn't a feature of the Confluent schema registry?
Correct Answer:
A
Data is stored on brokers.
The rule "same key goes to the same partition" is true unless...
Correct Answer:
C
Increasing the number of partition causes new messages keys to get hashed differently, and breaks the guarantee "same keys goes to the same partition". Kafka logs are immutable and the previous messages are not re-shuffled.