Which of the following errors are retriable from a producer perspective? (select two)
What exceptions may be caught by the following producer? (select two)
ProducerRecord<String, String> record =
new ProducerRecord<>("topic1", "key1", "value1");
try {
producer.send(record);
} catch (Exception e) {
e.printStackTrace();
}
Refer to the producer code below. It features a 'Callback' class with a method called 'onCompletion()'.
In the 'on Completion*.)' method, what does the 'metadata.offset()' value represent?
producer.send(record, new MyCallback(record));
You are building a system for a retail store selling products to customers.
Which three datasets should you model as a GlobalKTable?
(Select three.)