In Avro, adding an element to an enum without a default is a __ schema evolution
How will you find out all the partitions where one or more of the replicas for the partition are not in-sync with the leader?
We would like to be in an at-most once consuming scenario. Which offset commit strategy would you recommend?
There are 3 brokers in the cluster. You want to create a topic with a single partition that is resilient to one broker failure and one broker maintenance. What is the replication factor will you specify while creating the topic?
You want to perform table lookups against a KTable everytime a new record is received from the KStream. What is the output of KStream-KTable join?
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.
We have a store selling shoes. What dataset is a great candidate to be modeled as a KTable in Kafka Streams?
Select all the way for one consumer to subscribe simultaneously to the following topics - topic.history, topic.sports, topic.politics? (select two)
How do you create a topic named test with 3 partitions and 3 replicas using the Kafka CLI?
You want to send a message of size 3 MB to a topic with default message size configuration. How does KafkaProducer handle large messages?
An ecommerce website maintains two topics - a high volume "purchase" topic with 5 partitions and low volume "customer" topic with 3 partitions. You would like to do a stream-table join of these topics. How should you proceed?
A kafka topic has a replication factor of 3 and min.insync.replicas setting of 2. How many brokers can go down before a producer with acks=all can't produce?
To allow consumers in a group to resume at the previously committed offset, I need to set the proper value for...
The exactly once guarantee in the Kafka Streams is for which flow of data?
In Avro, adding a field to a record without default is a __ schema evolution