In Java, Avro SpecificRecords classes are
Correct Answer:C
SpecificRecord is created from generated record classes
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?
Correct Answer:C
This is active-passing as the replicated topic is used for read-only purposes only
What is returned by a producer.send() call in the Java API?
Correct Answer:C
Seehttps://kafka.apache.org/21/javadoc/org/apache/kafka/clients/producer/KafkaProducer. html
A consumer wants to read messages from a specific partition of a topic. How can this be achieved?
Correct Answer:B
assign() can be used for manual assignment of a partition to a consumer, in which case subscribe() must not be used. Assign() takes a collection of TopicPartition object as an argument https://kafka.apache.org/23/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.ht
ml#assign-java.util.Collection-
Once sent to a topic, a message can be modified
Correct Answer:A
Kafka logs are append-only and the data is immutable