You want to sink data from a Kafka topic to S3 using Kafka Connect. There are 10 brokers in the cluster, the topic has 2 partitions with replication factor of 3. How many tasks will you configure for the S3 connector?
Which of the following errors are retriable from a producer perspective? (select two)
How do you create a topic named test with 3 partitions and 3 replicas using the Kafka CLI?
An ecommerce wesbite sells some custom made goods. What's the natural way of modeling this data in Kafka streams?
In Avro, adding an element to an enum without a default is a __ schema evolution
Which of these joins does not require input topics to be sharing the same number of partitions?
What is the protocol used by Kafka clients to securely connect to the Confluent REST Proxy?
What are the requirements for a Kafka broker to connect to a Zookeeper ensemble? (select two)
What exceptions may be caught by the following producer? (select two)
ProducerRecord
new ProducerRecord<>("topic1", "key1", "value1");
try {
producer.send(record);
} catch (Exception e) {
e.printStackTrace();
}
A consumer starts and has auto.offset.reset=none, and the topic partition currently has data for offsets going from 45 to 2311. The consumer group has committed the offset 10 for the topic before. Where will the consumer read from?
A topic "sales" is being produced to in the Americas region. You are mirroring this topic using Mirror Maker to the European region. From there, you are only reading the topic for analytics purposes. What kind of mirroring is this?
If I supply the setting compression.type=snappy to my producer, what will happen? (select two)
A client connects to a broker in the cluster and sends a fetch request for a partition in a topic. It gets an exception Not Leader For Partition Exception in the response. How does client handle this situation?